Specifies the mode options for image settings.

from nutrient import ImageSettingMode

Values

NameValueDescription
ImageSettingMode.UNSPECIFIED0No specific mode is set.
ImageSettingMode.FOLLOW_EXIF_ROTATION1Specifies if the Exif Rotation information should be followed if it’s present in the loaded document
ImageSettingMode.PRESERVE_ICC_PROFILE2Specifies if the ICC profile should be preserved during the conversion if it’s present in the loaded document.

Usage Example

from nutrient import ImageSettingMode
# Access enum values
value = ImageSettingMode.UNSPECIFIED
print(f"Value: {value}") # Output: Value: ImageSettingMode.UNSPECIFIED
print(f"Integer value: {value.value}") # Output: Integer value: 0