Enumeration RasterDataSource
RasterDataSource
describes the target types.
- JavaScript
- Android
- Objective-C
- Swift
- C++
- C#
- Python
export enum EnumRasterDataSource { /**The raster data source type of the PDF file is "pages". Only available for PDFReadingMode PDFRM_RASTER.*/ RDS_RASTERIZED_PAGES = 0, /**The raster data source type of the PDF file is "images".*/ RDS_EXTRACTED_IMAGES = 1 }
public @interface EnumRasterDataSource { /**The raster data source type of the PDF file is "pages". Only available for PDFReadingMode raster.*/ public static final int RDS_RASTERIZED_PAGES = 0; /**The raster data source type of the PDF file is "images".*/ public static final int RDS_EXTRACTED_IMAGES = 1; }
typedef NS_ENUM(NSInteger, DSRasterDataSource) { /**The raster data source type of the PDF file is "pages". Only available for PDFReadingMode raster.*/ DSRasterDataSourceRasterizedPages = 0, /**The raster data source type of the PDF file is "images".*/ DSRasterDataSourceExtractedImages = 1 }NS_SWIFT_NAME(RasterDataSource);
public enum RasterDataSource : Int { /**The raster data source type of the PDF file is "pages". Only available for PDFReadingMode raster.*/ rasterizedPages = 0, /**The raster data source type of the PDF file is "images".*/ extractedImages = 1 }
typedef enum RasterDataSource { /**The raster data source type of the PDF file is "pages". Only available for PDFReadingMode PDFRM_RASTER.*/ RDS_RASTERIZED_PAGES, /**The raster data source type of the PDF file is "images".*/ RDS_EXTRACTED_IMAGES } RasterDataSource;
public enum EnumRasterDataSource { RDS_RASTERIZED_PAGES, RDS_EXTRACTED_IMAGES }
class EnumRasterDataSource(IntEnum): RDS_RASTERIZED_PAGES RDS_EXTRACTED_IMAGES