We’re happy to announce the GroupDocs.Parser for .NET 25.10 release, available as of Ekim 2025. This update brings a new table‑extraction capability, several API refinements, and a critical fix for PDF pagination.
Bu sürümde yenilikler
📄 Her sayfadan tablo çıkarma (PARSERNET‑2745)
Added two overloads to GroupDocs.Parser.Parser that let you pull table structures directly from a document, without needing a template.
IEnumerable<PageTableArea> GetTables()– tüm belgede tablolari çıkarır.IEnumerable<PageTableArea> GetTables(int pageIndex)– belirli bir sayfadan tablolari çıkarır.
Not:
PageTableArearepresents a detected table region together with its cells, page reference and bounding rectangle.
Örnek – Tek bir sayfadan tabloları al
using (Parser parser = new Parser(filePath))
{
int pageIndex = 0; // first page (zero‑based)
IEnumerable<PageTableArea> tables = parser.GetTables(pageIndex);
// iterate over tables
foreach (var table in tables)
{
// work with table.Cells, table.Page, etc.
}
}
🔧 API yeniden tasarımı – iç PageTableArea yapıcı (PARSERNET‑2743)
The public constructor of GroupDocs.Parser.Data.PageTableArea has been removed and is now internal. Instances of this class are created exclusively by the Parser engine, preventing accidental misuse. This is a backward‑incompatible change for anyone who instantiated PageTableArea directly.
🐞 Düzeltme – PDF ayrıştırma ilk 4 sayfayla sınırlı (PARSERNET‑1871)
The parser now correctly processes all pages of a PDF document. Previously, only the first four pages were returned when calling the parsing API.
Güncellemeyi nasıl alabilirsiniz
-
NuGet – Upgrade to the latest package:
dotnet add package GroupDocs.Parser --version 25.10.1dotnet add package GroupDocs.Parser.NETFramework --version 25.10.1Choose the appropriate target‑framework package if you are on .NET Framework or .NET 6+.
-
Direct download – Grab the compiled assemblies from the official release page:
https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net-25.10-dlls-only/
https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net-25.10/
Kaynaklar
- Full release notes – the official “GroupDocs.Parser for .NET 25.10 Release Notes” page: https://releases.groupdocs.com/parser/net/release-notes/2025/groupdocs-parser-for-net-25-10-release-notes/
- Documentation – detailed API reference and usage guides: https://docs.groupdocs.com/parser/net/
- Support forum – ask questions or report issues: https://forum.groupdocs.com/c/parser/