Search Results for: "Quick PDF Library"

The quality level of JPG images during conversion can be controlled using the SetJPEGQuality function. A number between 1 and 100 indicating the quality of the image. The higher the value, the better the image quality, but the lar...
Keep reading Keep reading
Creating thumbnails for PDFs using Foxit Quick PDF Library is simple. Simply use the functions listed in the below order: RenderPageToString AddImageFromString SetPageThumbnail Here is some C# sample code demonstrating how this ...
Keep reading Keep reading
You can use Foxit Quick PDF Library with Microsoft Access and Visual Basic using either the DLL or ActiveX editions. There is also a knowledge base article which shows you how to generate a PDF report from a Microsoft Access datab...
Keep reading Keep reading
All form fields in a PDF can be deleted with the assistance of the DeleteFormField function in Foxit Quick PDF Library. Some JScript sample code that demonstrates how to do this is shown below: DPL.LoadFromFile("pdf_form.pdf"); To...
Keep reading Keep reading
Foxit Quick PDF Library includes support for a variety of different barcodes, including: Code39 (or Code 3 of 9) EAN-13 Code128 PostNet Interleaved 2 of 5 Data Matrix Intelligent Mail Barcode (OneCode) PDF...
Keep reading Keep reading
Foxit Quick PDF Library lets you extract embedded TrueType fonts from PDF files to a font file on the local disk. All other font types and subsetted TrueType fonts are not supported by the SaveFontToFile function. Here is some C# ...
Keep reading Keep reading
Foxit Quick PDF Library supports the merging of two or more PDF documents into one PDF document. The primary functions available for this task are MergeDocument, MergeFileList and MergeFileListFast. The function that you use for m...
Keep reading Keep reading
Using Foxit Quick PDF Library you can programmatically convert a multi-page TIFF image to a multi-page PDF. Here is some C# sample code that shows you how it's done. The size of the image drawn onto the PDF is determined by the DP...
Keep reading Keep reading
Converting an image to PDF is simple using Foxit Quick PDF Library. The key functions involved are AddImageFromFile and DrawImage. The size of the image drawn onto the PDF is determined by the DPI value of the image (if ...
Keep reading Keep reading