max_image_resolution property

SvgSaveOptions.max_image_resolution property

Gets or sets a value in pixels per inch that limits resolution of exported raster images. Default value is zero.

@property
def max_image_resolution(self) -> int:
    ...

@max_image_resolution.setter
def max_image_resolution(self, value: int):
    ...

Remarks

If the value of this property is non-zero, it limits resolution of exported raster images. That is, higher-resolution images are resampled down to the limit and lower-resolution images are exported as is.

If the value of this property is zero, all raster images are exported without resampling.

See Also