PdfCapabilities

data class PdfCapabilities(val text: Boolean, val search: Boolean, val bookmarks: Boolean, val links: Boolean, val thumbnails: Boolean, val progressiveLoading: Boolean, val progressiveRendering: Boolean, val forms: Boolean, val editing: Boolean, val javascriptExecution: Boolean, val xfa: Boolean)

Capabilities of the active PDFium backend and bundled PDFium build.

A capability can be available in PDFium before it is exposed by the current public API version. The current Android, iOS, JVM, and browser backends enable only text, search, and links.

Constructors

Link copied to clipboard
constructor(text: Boolean, search: Boolean, bookmarks: Boolean, links: Boolean, thumbnails: Boolean, progressiveLoading: Boolean, progressiveRendering: Boolean, forms: Boolean, editing: Boolean, javascriptExecution: Boolean, xfa: Boolean)

Properties

Link copied to clipboard

Document outline through PdfDocument.bookmarks.

Link copied to clipboard

Modifying document content.

Link copied to clipboard

Reading and submitting form fields.

Link copied to clipboard

Executing document JavaScript.

Link copied to clipboard

Link annotations through PdfPage.links.

Link copied to clipboard

Loading document data on demand while rendering.

Link copied to clipboard

Rendering pages incrementally as data arrives.

Link copied to clipboard

Text search through PdfPage.search.

Link copied to clipboard

Basic text extraction through PdfPage.extractText.

Link copied to clipboard

Embedded page thumbnails through PdfPage.thumbnail.

Link copied to clipboard

Rendering XFA (XML Forms Architecture) content.