This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/enums/image-export-format.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. ImageExportFormat

Specifies the export format for images.

from nutrient_sdk import ImageExportFormat

Values

NameValueDescription
ImageExportFormat.AUTO0Auto-detect from the destination filename extension. When exporting via a filename, the extension determines the format (.tif/.tiff → Tiff, .png → Png, .jpg/.jpeg → Jpeg, .bmp → Bmp). When exporting via a Stream, the caller must set this to an explicit format; Auto is rejected because no extension is available.
ImageExportFormat.TIFF1TIFF image format. Multi-page documents are written as multi-page TIFF.
ImageExportFormat.PNG2PNG image format. Multi-page documents produce numbered files (e.g., output-1.png, output-2.png).
ImageExportFormat.JPEG3JPEG image format. Multi-page documents produce numbered files (e.g., output-1.jpg, output-2.jpg).
ImageExportFormat.BMP4BMP image format. Multi-page documents produce numbered files (e.g., output-1.bmp, output-2.bmp).

Usage Example

from nutrient_sdk import ImageExportFormat
# Access enum values
value = ImageExportFormat.AUTO
print(f"Value: {value}") # Output: Value: ImageExportFormat.AUTO
print(f"Integer value: {value.value}") # Output: Integer value: 0