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 }