Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumPDFReadingMode

  • Android
  • Objective-C
  • Swift
public class EnumPDFReadingMode {
    public static final int PDFRM_AUTO = 1;
    public static final int PDFRM_VECTOR = 2;
    public static final int PDFRM_RASTER = 4;
}
typedef NS_ENUM(NSInteger,EnumPDFReadingMode)
{
    /** Lets the library choose the reading mode automatically.*/
    EnumPDFReadingModeAuto = 0x01,
    /** Detects barcode from vector data in PDF file.*/
    EnumPDFReadingModeVector = 0x02,
    /** Converts the PDF file to image(s) first, then perform barcode recognition.*/
    EnumPDFReadingModeRaster = 0x04
};
public enum EnumPDFReadingMode : Int{
    /** Lets the library choose the reading mode automatically.*/
    auto = 0x01
    /** Detects barcode from vector data in PDF file.*/
    vector = 0x02
    /** Converts the PDF file to image(s) first, then perform barcode recognition.*/
    raster = 0x04
}

This page is compatible for:

Is this page helpful?

YesYes NoNo