PDFium Component Suite for FireMonkey
Delphi and C++Builder components for viewing, navigating, text extracting and editing PDF files.
- uses PDFium open-source PDF rendering engine
- supports Windows, macOS, Linux, iOS and Android
- available for Delphi/C++Builder XE2 - 12
- source code included in registered version
- royalty free distribution in applications
Download and order
Order PDFium Component Suite for FireMonkey $120 USD (license for one developer)
Order PDFium Component Suite for FireMonkey multi-license $360 USD (license for all developers in company)
Order PDFium Component Suite for FireMonkey year upgrades $60 USD (registered users only)
Order PDFium Component Suite for FireMonkey year upgrades multi-license $180 USD (registered multi-license users only)
FAQ
How can I open PDF from memory?
PDF file names containing non-ascii characters have to be renamed or PDF files can be opened from memory using the TFPdf.LoadDocument method.
How can I fix "[DCC Error] E2597 ld: file not found: libpdfium.a" error?
Set "Search path" in Delphi "Project Options" dialog window to libpdfium.a file accordingly to the selected target:
Android 32-bit
C:\Program Files (x86)\Winsoft\PDFium Component Suite for FireMonkey\Library\Android32
Android 64-bit
C:\Program Files (x86)\Winsoft\PDFium Component Suite for FireMonkey\Library\Android64
iOS Device 64-bit
C:\Program Files (x86)\Winsoft\PDFium Component Suite for FireMonkey\Library\iOSDevice64
var PdfContent: TArray<Byte>; // PDF content PdfContent := TFile.ReadAllBytes('file.pdf'); // read PDF content from file to memory FPdf.LoadDocument(PdfContent, Length(PdfContent)); // load PDF from memory dataHow can I fix "File not found or could not be opened" exception?
PDF file names containing non-ascii characters have to be renamed or PDF files can be opened from memory using the TFPdf.LoadDocument method.
How can I fix "[DCC Error] E2597 ld: file not found: libpdfium.a" error?
Set "Search path" in Delphi "Project Options" dialog window to libpdfium.a file accordingly to the selected target:
Android 32-bit
C:\Program Files (x86)\Winsoft\PDFium Component Suite for FireMonkey\Library\Android32
Android 64-bit
C:\Program Files (x86)\Winsoft\PDFium Component Suite for FireMonkey\Library\Android64
iOS Device 64-bit
C:\Program Files (x86)\Winsoft\PDFium Component Suite for FireMonkey\Library\iOSDevice64