ImageFormatSettings(bpy_struct)

base class — bpy_struct

class bpy.types.ImageFormatSettings(bpy_struct)

Settings for image formats

cineon_black

Log conversion reference blackpoint (in [0, 1024], default 0)

Type:

int

cineon_gamma

Log conversion gamma (in [0, 10], default 0.0)

Type:

float

cineon_white

Log conversion reference whitepoint (in [0, 1024], default 0)

Type:

int

color_depth

Bit depth per channel (default '8')

Type:

Literal[Image Color Depth Items]

color_management

Which color management settings to use for file saving (default 'FOLLOW_SCENE')

Type:

Literal[‘FOLLOW_SCENE’, ‘OVERRIDE’]

color_mode

Choose BW for saving grayscale images, RGB for saving red, green and blue channels, and RGBA for saving red, green, blue and alpha channels (default 'RGBA')

Type:

Literal[Image Color Mode Items]

compression

Amount of time to determine best compression: 0 = no compression with fast file output, 100 = maximum lossless compression with slow file output (in [0, 100], default 15)

Type:

int

display_settings

Settings of device saved image would be displayed on (readonly)

Type:

ColorManagedDisplaySettings

exr_codec

Compression codec settings for OpenEXR (default 'NONE')

Type:

Literal[Exr Codec Items]

file_format

File format to save the rendered images as (default 'PNG')

Type:

Literal[Image Type All Items]

has_linear_colorspace

File format expects linear color space (default False, readonly)

Type:

bool

jpeg2k_codec

Codec settings for JPEG 2000 (default 'JP2')

Type:

Literal[‘JP2’, ‘J2K’]

linear_colorspace_settings

Output color space settings (readonly)

Type:

ColorManagedInputColorspaceSettings

media_type

The type of media to save (default 'IMAGE')

Type:

Literal[‘IMAGE’, ‘MULTI_LAYER_IMAGE’, ‘VIDEO’]

quality

Quality for image formats that support lossy compression (in [0, 100], default 90)

Type:

int

stereo_3d_format

Settings for stereo 3D (readonly, never None)

Type:

Stereo3dFormat

tiff_codec

Compression mode for TIFF (default 'DEFLATE')

Type:

Literal[‘NONE’, ‘DEFLATE’, ‘LZW’, ‘PACKBITS’]

use_cineon_log

Convert to logarithmic color space (default False)

Type:

bool

use_exr_interleave

Use legacy interleaved storage of views, layers and passes for compatibility with applications that do not support more efficient multi-part OpenEXR files. (default False)

Type:

bool

use_jpeg2k_cinema_48

Use OpenJPEG Cinema Preset (48fps) (default False)

Type:

bool

use_jpeg2k_cinema_preset

Use OpenJPEG Cinema Preset (default False)

Type:

bool

use_jpeg2k_ycc

Save luminance-chrominance-chrominance channels instead of RGB colors (default False)

Type:

bool

use_preview

When rendering animations, save JPG preview images in same directory (default False)

Type:

bool

view_settings

Color management settings applied on image before saving (readonly)

Type:

ColorManagedViewSettings

views_format

Format of multiview media (default 'INDIVIDUAL')

Type:

Literal[Views Format Multiview Items]

classmethod bl_rna_get_subclass(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (bpy.types.Struct | None) – The value to return when not found.

Returns:

The RNA type or default when not found.

Return type:

bpy.types.Struct

classmethod bl_rna_get_subclass_py(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (type | None) – The value to return when not found.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties

Inherited Functions

References