Source code for pdftools_sdk.pdf2_image.fax_vertical_resolution
from ctypes import *
from enum import IntEnum
[docs]
class FaxVerticalResolution(IntEnum):
"""
The vertical resolution of Fax images
The two resolutions available in Fax images.
Attributes:
STANDARD (int):
HIGH (int):
"""
STANDARD = 1
HIGH = 2