Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion programming/cplusplus/api-reference/utility/image-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Returns an integer indicating the success of the operation. 0 indicates success,

### SaveToFile

Saves an image to a file.
Saves an image to a file in JPEG, PNG, BMP or PDF format.

```cpp
int SaveToFile(const CImageData *pImageData, const char *path, bool overwrite = true)
Expand Down
2 changes: 1 addition & 1 deletion programming/dotnet/api-reference/utility/image-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Returns an integer indicating the success of the operation. 0 indicates success,

### SaveToFile

Saves an image to a file.
Saves an image to a file in JPEG, PNG, BMP or PDF format.

```csharp
int SaveToFile(ImageData imageData, string path, bool overwrite = true)
Expand Down
2 changes: 1 addition & 1 deletion programming/java/api-reference/utility/image-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Returns an `ImageData` object representing the image.

### saveToFile

Saves an image to a file.
Saves an image to a file in JPEG, PNG, BMP or PDF format.

```java
void saveToFile(ImageData imageData, String path) throws UtilityException
Expand Down
2 changes: 1 addition & 1 deletion programming/python/api-reference/utility/image-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Returns a tuple containing following elements:

### save_to_file

Saves an image to a file.
Saves an image to a file in JPEG, PNG, BMP or PDF format.

```python
def save_to_file(self, image_data: ImageData, path: str, overwrite: bool = True) -> Tuple[int, str]:
Expand Down