Latest release

Foxit 10.0

Foxit PDF SDK 10.0.0 introduces advanced features and performance optimizations, enhancing document management capabilities. The new 3D and OFD rendering support allows for more dynamic and versatile content within PDFs. The addition of DWG to PDF conversion and bidirectional OFD-PDF conversion caters to specialized document workflows. Editing is improved with paragraph-based features, offering greater control over document formatting. Performance boosts come from optimized rendering and parsing for pages with many Path objects, and the Compliance module and OCR addon now support multithreading and multiprocessing, respectively. The SDK’s expansion to Node.js broadens its accessibility to developers across different platforms.

Foxit Conversion SDK 2.0.0 introduces Office to PDF conversion for Windows, complete with a web demo for hands-on experience. This release also adds AnyCPU support for broader system compatibility. Enhancements include improved PDF to Word conversion with footnotes and headers, and better text recognition in PDF to PowerPoint.

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