
PDFium Component Suite



Delphi and C++ Builder components for viewing, navigating, text extracting and editing PDF files.
- uses PDFium open-source PDF rendering engine
- available for Delphi/C++ Builder 5 - 10.4 and Lazarus 2.0.10
- source code included in registered version
- royalty free distribution in applications
Download and order
Order PDFium Component Suite $100,- USD (license for one developer)
Order PDFium Component Suite multilicense $300,- USD (license for all developers in company)
Order PDFium Component Suite year upgrades $50,- USD (registered users only)
Order PDFium Component Suite year upgrades multilicense $150,- USD (registered multilicense users only)
FAQ
How can I open PDF from memory?
PDF file name containg non-ascii characters has to be renamed or opened from memory.
var PdfContent: TArray<Byte>; // PDF content PdfContent := TFile.ReadAllBytes('file.pdf'); // read PDF content from file to memory Pdf.LoadDocument(PdfContent, Length(PdfContent)); // load PDF from memory dataHow can I fix "File not found or could not be opened" exception?
PDF file name containg non-ascii characters has to be renamed or opened from memory.