Table of contents

Enumeration PDFReadingMode

PDFReadingMode describes the PDF reading modes.

typedef enum PDFReadingMode
{
   /**
    * Deprecated. Covered by PDFRM_MULTIMODAL.
    */
   PDFRM_VECTOR = 0x01,
   /**
    * Renders the entire page as a bitmap regardless of object type.
    */
   PDFRM_RASTER = 0x02,
   /**
    * Extracts multimodal information from a PDF, including vector graphics,
    * text content, and embedded images, which can be used for subsequent
    * tasks such as barcode reading, text recognition, and document analysis.
    */
   PDFRM_MULTIMODAL = 0x03,
   /** Reserved setting for PDF reading mode.*/
#if defined(_WIN32) || defined(_WIN64)
   PDFRM_REV = 0x80000000,
#else
   PDFRM_REV = -2147483648,
#endif
} PDFReadingMode;

This page is compatible for: