Skip to content

Latest commit

History

History
39 lines (23 loc) · 1.19 KB

File metadata and controls

39 lines (23 loc) · 1.19 KB

ConvertPDF2ImageRequest

Properties

NameTypeDescriptionNotes
fileBase64StringBase64 encoded PDF file. Required if file_url is not provided.[optional]
fileUrlStringPublic HTTPS URL to a PDF file. Required if file_base64 is not provided.[optional]
formatFormatEnumOutput image format[optional]
qualityIntegerImage quality (1-100)[optional]
resolutionIntegerImage resolution in DPI (72-600)[optional]
pagesStringPage number or range to convert. Use a single number (e.g. "1") or a range (e.g. "1-4"). Defaults to all pages.[optional]
outputOutputEnumOutput format[optional]
nameStringDocument name (max 120 characters). Auto-generated if not provided.[optional]

Enum: FormatEnum

NameValue
PNG"png"
JPEG"jpeg"
JPG"jpg"

Enum: OutputEnum

NameValue
BASE64"base64"
FILE"file"