Latest release

Foxit 10.1

Foxit PDF SDK for Desktop 10.1.0 supports PDF/E and PDF/X standards in preflight checks, enhances the conversion workflows and OCR capabilities with the support of multi-threaded/multi-core processing and additional options, and improves the performance in document optimization and form file import processes. It also adds new APIs in modules like search, image processing, and text processing to deliver a streamlined workflow.

Foxit Conversion SDK 2.1.0 brings enhanced features to PDF2Office and Office2PDF, providing users with a more versatile and efficient document conversion experience. For PDF2Office, users can now convert the restricted PDF files and benefit from additional options to remove trailing spaces from the output, specify Excel workbook settings, and control whether to include images or insert page breaks during conversion. Office2PDF introduces the support for outline conversion in Word2PDF, and offers workbook conversion options in Excel2PDF.

Solutions

Plug-Ins & Open Source

Cordova

Build native mobile (iOS, Android) apps with HTML, CSS & JS. Target multiple platforms with one code base on our mobile PDF SDK.

Learn More Learn More
Kotlin

Develop Android applications using MobilePDF SDK in Kotlin. Designed to work using Java, MobilePDF SDK can easily be integrated into your development process when working with Kotlin.

Learn More Learn More
React Native

Write with or create components using JavaScript code to develop Android and iOS applications using React Native.

Learn More Learn More
Xamarin

Build and deploy native Android, iOS and Windows apps, using existing skills, teams, and code in C# with MobilePDF SDK.

Learn More Learn More

WebPDF.JS

Develop a full-fledged PDF Viewer for browser environments, all with Javascript. Migrate from PDF.js and experience native-like performance.

Read more Read more
Explore further

Recent articles & project samples

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
Yes, you can easily embed a file in a PDF using the EmbedFile function. This will embed the file (any file type) in a PDF document and then make that file accessible from within the PDF via the attachment panel. This C# sample cod...
Keep reading Keep reading
Using Foxit Quick PDF Library it is possible to scale down or shrink the content on a page in order to leave a margin on the sides and the top and bottom. This means that you can shrink the content on the page in order to make roo...
Keep reading Keep reading
Yes, you can use Foxit Quick PDF Library to generate PDF files from Microsoft Access. Below you can find sample C# code which demonstrates how this can be done. The sample demonstrates how to generate a PDF using data obtained fro...
Keep reading Keep reading
Foxit Quick PDF Library lets you programmatically stamp one PDF onto another PDF. This can be done using the CapturePage and DrawCapturedPage functions to overlay a PDF file onto another. Here is a small JScript code snippet that ...
Keep reading Keep reading
The SetTextColor function can be used to set the color of text drawn using the DrawText function. // Set text color to red. QP.SetTextColor(255, 0, 0); QP.DrawText(50, 50, "Red colored text"); Foxit Quick PDF Library can only con...
Keep reading Keep reading
When using Foxit Quick PDF Library it is possible to create checkbox form fields which have the same name and as a result become duplicate form fields (updating one updates them all), but it is not possible to have duplicate form ...
Keep reading Keep reading