SaveImageToJpeg
Saves an image to a JPEG file.
Syntax
C++
Python
def SaveImageToJpeg( inImage: Image, inFile: str, /, *, inQuality: int | None = None, inIgnoreErrors: bool = False ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inImage | Image | An image to be saved | ||
![]() |
inFile | str | Path to a file | ||
![]() |
inQuality | int | None | 0 - 100 | None | Quality |
![]() |
inIgnoreErrors | bool | False | Switches to re-trying and canceling in case of errors (e.g. when the disk is full) |

