EnumConvertMode
This enumeration defines how the PDF is loaded. It affects whether PDF elements like text layers are loaded and the image for display and saving.
enum EnumConvertMode {
/** Render the pages. */
CM_RENDERALL = "cm/renderall",
/** Extract the images. */
CM_IMAGEONLY = "cm/imageonly",
/** Automatically decide which mode to use based on whether there is only one image object in the page */
CM_AUTO = "cm/auto",
}