WINSOFT components and applications

PDF Library

PDF Library

Delphi and C++Builder library for creating and processing PDF documents.
Download PDF Library 1.4 trial version
Download demo example
Order PDF Library $80 USD (license for one developer)
Order PDF Library multi-license $240 USD (license for all developers in company)
Order PDF Library year upgrades $40 USD (registered users only)
Order PDF Library year upgrades multi-license $120 USD (registered multi-license users only)
Order Winsoft Component Package

FAQ

How can I solve "Project Demo.exe raised exception class $C0000090 with message 'floating point invalid operation at 0x70934779'." error message?

Switch off floating point exceptions using this Delphi code:
Set8087CW(Get8087CW or $3F);
C++Builder code:
System::Set8087CW(System::Get8087CW() | 0x3F);

How can I solve "Class not registered." error message?

How can I retrieve PDF fields?

var Fields: _PdfAcroFieldCollection;

Fields := Document.AcroForm.Fields;
for I := 0 to Fields.Count - 1 do
  ShowMessage(IntToStr(I) + ': ' + Fields[I].Name);

Useful Links

IconIndustry Supported PDF/A Validation
IconPDFsharp & MigraDoc