Insights, tutorials, and updates from the Foxit PDF SDK engineering team.
Find out how Foxit PDF SDK for Web allows you to create hyperlinks here with sample code included. Adding hyperlinks with Foxit PDF SDK for Web allows you to link to different documents on the web. When the PDFUI or PDFViewer is initialized with Foxit PDF SDK for Web, you can add in a custom parameter which is configured as follows
Click here to discover how Foxit PDF SDK for Web allows you to create image annotations with a simple code. The image annotation feature allows you to add graphic annotations to PDF files, perfect for situations when text annotations don’t suffice.
Click here to discover how Foxit PDF SDK for Web allows you to create stamp annotations with a simple code. The stamp annotation feature displays text or graphics intended to look as if they were stamped on the page with a rubber stamp.
This guide will help you get started with Foxit PDF SDK for Android & the React Native plugin for Windows. Click here to read more.
Foxit PDF SDK for Windows features three libraries: C++, C# (.NET) and Java, built to run in both desktop and server environments, both 32-bit and 64-bit. Foxit PDF SDK (.NET) works with AWS Lambda for creating functions in C# such as rendering, viewing, annotating, signing, protecting and managing forms in PDFs. This article will provide [...]
With Foxit PDF SDK, attachments refer to attachments of documents rather than file attachment annotations, which allow whole files to be embedded in a document, much like email attachments. PDF SDK provides application APIs to access attachments such as loading attachments, getting attachments, inserting/removing attachments, and accessing properties of attachments.
With Foxit PDF SDK, attachments refers to attachments of documents rather than file attachment annotations, which allow whole files to be embedded in a document, much like email attachments. PDF SDK provides application APIs to access attachments such as loading attachments, getting attachments, inserting/removing attachments, and accessing properties of attachments. Example: How to embed a [...]
Foxit PDF SDK provides navigational tools called Bookmarks to allow users to quickly locate and link their point of interest within a PDF document. PDF bookmark is also called outline, and each bookmark contains a destination or actions to describe where it links to. It is a tree-structured hierarchy, so function FSPDFDoc::getRootBookmark must be called first to get the root of the whole bookmark tree before accessing the bookmark tree. Here, “root bookmark” is an abstract object which can only have child bookmarks without next sibling bookmarks and data (including bookmark data, destination data and action data). It cannot be shown on the application UI since it has no data. Therefore, a root bookmark can only call the function FSBookmark::getFirstChild.
Bookmark (Outline) Foxit PDF SDK provides navigational tools called Bookmarks to allow users to quickly locate and link their point of interest within a PDF document. PDF bookmark is also called outline, and each bookmark contains a destination or actions to describe where it links to. It is a tree-structured hierarchy, so function PDFDoc.getRootBookmark must [...]
A PDF Signature can be used to create and sign digital signatures on PDF documents, which protects the security of documents’ contents and avoids it from being tampered with maliciously. It can let the receiver ensure that the document is released by the signer and the contents of the document are complete and unchanged. Foxit [...]