PDFium Component Suite for FireMonkey

PDFium Component Suite for FireMonkey

PDFium PDFium PDFium
PDFium
Delphi and C++Builder components for viewing, navigating, extracting text, and editing PDF files.
  • utilizes the PDFium open-source PDF rendering engine
  • supports Windows, macOS, Linux, iOS, and Android
  • compatible with Delphi/C++Builder versions XE4 to 12
  • includes source code with the registered version
  • offers royalty-free distribution for use in your application

Download and order

FAQ

How do I open a PDF directly from memory?
const PdfContent = TFile.ReadAllBytes('file.pdf'); // read PDF content from file to memory
FPdf.LoadDocument(PdfContent, Length(PdfContent)); // load PDF from memory data
							
How can I resolve the "File not found or could not be opened" exception?
This issue may occur when PDF file names include non-ASCII characters. To fix this, you can either rename the PDF files to use only ASCII characters, or alternatively, open the PDFs directly from memory using the method TFPdf.LoadDocument.

How can I fix the "[DCC Error] E2597 ld: file not found: libpdfium.a" error?
To resolve this error, set the "Search path" in the Delphi "Project Options" dialog window to the libpdfium.a file according 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

Related links