PdfRendererPreV


class PdfRendererPreV : AutoCloseable
kotlin.Any
   ↳ android.graphics.pdf.PdfRendererPreV

This class enables rendering a PDF document and selecting, searching, fast scrolling, annotations, etc from Android R till Android U. This class is not thread safe.

If you want to render a PDF, you will need to create a new instance of renderer for each document. To render each page, you open the page using the renderer instance created earlier, render it, and close the page. After you are done with rendering, you close the renderer. After the renderer is closed it should not be used anymore. Note that the pages are rendered one by one, i.e. you can have only a single page opened at any given time.

A typical use of the APIs to render a PDF looks like this:

// create a new renderer
  try (PdfRendererPreV renderer = new PdfRendererPreV(getSeekableFileDescriptor(), loadParams)) {
       // let us just render all pages
       final int pageCount = renderer.getPageCount();
       for (int i = 0; i < pageCount; i++) {
           Page page = renderer.openPage(i);
           RenderParams params = new RenderParams.Builder(Page.RENDER_MODE_FOR_DISPLAY).build();
 
           // say we render for showing on the screen
           page.render(mBitmap, params, null, null);
 
           // do stuff with the bitmap
 
           // close the page
           page.close();
       }
  }
  

Please refer to PdfRenderer for fulfilling this usecase.

Summary

Nested classes

This class represents a PDF document page for rendering.

Constants
static Int

Represents a linearized PDF document.

static Int

Represents a non-linearized PDF document.

static Int

Represents a PDF with form fields specified using the AcroForm spec

static Int

Represents a PDF without form fields

static Int

Represents a PDF with form fields specified using the XFAF subset of the XFA spec

static Int

Represents a PDF with form fields specified using the entire XFA spec

Public constructors

Creates a new instance of PdfRendererPreV class.

PdfRendererPreV(fileDescriptor: ParcelFileDescriptor, params: LoadParams)

Creates a new instance of PdfRendererPreV class.

Public methods
Unit

Closes this renderer and destroys any cached instance of the document.

Int

Gets the type of the PDF document.

Int

Gets the number of pages in the document.

Int

Returns the form type of the loaded PDF

PdfRendererPreV.Page
openPage(index: Int)

Opens a Page for rendering.

Unit
write(destination: ParcelFileDescriptor, removePasswordProtection: Boolean)

Saves the current state of the loaded PDF document to the given writable ParcelFileDescriptor.

Protected methods
Unit

Constants

DOCUMENT_LINEARIZED_TYPE_LINEARIZED

static val DOCUMENT_LINEARIZED_TYPE_LINEARIZED: Int

Represents a linearized PDF document.

Value: 1

DOCUMENT_LINEARIZED_TYPE_NON_LINEARIZED

static val DOCUMENT_LINEARIZED_TYPE_NON_LINEARIZED: Int

Represents a non-linearized PDF document.

Value: 0

PDF_FORM_TYPE_ACRO_FORM

static val PDF_FORM_TYPE_ACRO_FORM: Int

Represents a PDF with form fields specified using the AcroForm spec

Value: 1

PDF_FORM_TYPE_NONE

static val PDF_FORM_TYPE_NONE: Int

Represents a PDF without form fields

Value: 0

PDF_FORM_TYPE_XFA_FOREGROUND

static val PDF_FORM_TYPE_XFA_FOREGROUND: Int

Represents a PDF with form fields specified using the XFAF subset of the XFA spec

Value: 3

PDF_FORM_TYPE_XFA_FULL

static val PDF_FORM_TYPE_XFA_FULL: Int

Represents a PDF with form fields specified using the entire XFA spec

Value: 2

Public constructors

PdfRendererPreV

PdfRendererPreV(fileDescriptor: ParcelFileDescriptor)

Creates a new instance of PdfRendererPreV class.

Note: The provided file descriptor must be seekable, i.e. its data being randomly accessed, e.g. pointing to a file.

Note: This class takes ownership of the passed in file descriptor and is responsible for closing it when the renderer is closed.

If the file is from an untrusted source it is recommended to run the renderer in a separate, isolated process with minimal permissions to limit the impact of security exploits.

Parameters
fileDescriptor ParcelFileDescriptor: Seekable file descriptor to read from. This value cannot be null.
Exceptions
java.io.IOException If an error occurs while reading the file.
java.lang.SecurityException If the file requires a password or the security scheme is not supported by the renderer.
java.lang.IllegalArgumentException If the ParcelFileDescriptor is not seekable.
java.lang.NullPointerException If the file descriptor is null.

PdfRendererPreV

PdfRendererPreV(
    fileDescriptor: ParcelFileDescriptor,
    params: LoadParams)

Creates a new instance of PdfRendererPreV class.

Note: The provided file descriptor must be seekable, i.e. its data being randomly accessed, e.g. pointing to a file. If the password passed in android.graphics.pdf.LoadParams is incorrect, the android.graphics.pdf.PdfRendererPreV will throw a SecurityException.

Note: This class takes ownership of the passed in file descriptor and is responsible for closing it when the renderer is closed.

If the file is from an untrusted source it is recommended to run the renderer in a separate, isolated process with minimal permissions to limit the impact of security exploits.

Parameters
fileDescriptor ParcelFileDescriptor: Seekable file descriptor to read from. This value cannot be null.
params LoadParams: Instance of LoadParams specifying params for loading PDF document. This value cannot be null.
Exceptions
java.io.IOException If an error occurs while reading the file.
java.lang.SecurityException If the file requires a password or the security scheme is not supported by the renderer.
java.lang.IllegalArgumentException If the ParcelFileDescriptor is not seekable.
java.lang.NullPointerException If the file descriptor or load params is null.

Public methods

close

fun close(): Unit

Closes this renderer and destroys any cached instance of the document. You should not use this instance after this method is called.

Exceptions
java.lang.Exception if this resource cannot be closed
java.lang.IllegalStateException If close() is called before invoking this.

getDocumentLinearizationType

fun getDocumentLinearizationType(): Int

Gets the type of the PDF document.

Return
Int The PDF document type. Value is android.graphics.pdf.PdfRendererPreV#DOCUMENT_LINEARIZED_TYPE_NON_LINEARIZED, or android.graphics.pdf.PdfRendererPreV#DOCUMENT_LINEARIZED_TYPE_LINEARIZED
Exceptions
java.lang.IllegalStateException If close() is called before invoking this.

getPageCount

fun getPageCount(): Int

Gets the number of pages in the document.

Return
Int The page count. Value is 0 or greater
Exceptions
java.lang.IllegalStateException If close() is called before invoking this.

getPdfFormType

fun getPdfFormType(): Int

Returns the form type of the loaded PDF

Return
Int Value is android.graphics.pdf.PdfRendererPreV#PDF_FORM_TYPE_NONE, android.graphics.pdf.PdfRendererPreV#PDF_FORM_TYPE_ACRO_FORM, android.graphics.pdf.PdfRendererPreV#PDF_FORM_TYPE_XFA_FULL, or android.graphics.pdf.PdfRendererPreV#PDF_FORM_TYPE_XFA_FOREGROUND
Exceptions
java.lang.IllegalStateException if the renderer is closed
java.lang.IllegalArgumentException if an unexpected PDF form type is returned

openPage

fun openPage(index: Int): PdfRendererPreV.Page

Opens a Page for rendering.

Parameters
index Int: The page index to open, starting from index 0. Value is 0 or greater
Return
PdfRendererPreV.Page A page that can be rendered. This value cannot be null.
Exceptions
java.lang.IllegalStateException If close() is called before invoking this.
java.lang.IllegalArgumentException If the page number is less than 0 or greater than or equal to the total page count.

write

fun write(
    destination: ParcelFileDescriptor,
    removePasswordProtection: Boolean
): Unit

Saves the current state of the loaded PDF document to the given writable ParcelFileDescriptor. If the document is password-protected then setting removePasswordProtection removes the protection before saving. The PDF document should already be decrypted with the correct password before writing. Useful for printing or sharing. Note: This method closes the provided file descriptor.

Parameters
destination ParcelFileDescriptor: The writable ParcelFileDescriptor This value cannot be null.
removePasswordProtection Boolean: If true, removes password protection from the PDF before saving.
Exceptions
java.io.IOException If there's a write error, or if 'removePasswordSecurity' is true but the document remains encrypted.
java.lang.IllegalStateException If close() is called before invoking this.

Protected methods

finalize

protected fun finalize(): Unit
Exceptions
java.lang.Throwable the Exception raised by this method