SOD C/C++ API Reference - Image Processing


Syntax

int sod_img_save_as_png(sod_img input, const char * zPath);

Description

Save a sod_img object in a file on disk (PNG format).

Parameters

sod_img    input

The input image to be saved. The image can be loaded from disk using sod_img_load_from_file(), from memory (i.e. network socket) via sod_img_load_from_mem() or dynamically created via sod_make_image() and processed using the image processing interfaces offered by sod.

const char    *zPath

Destination path on disk.

Return Value

SOD_OK is returned on success. Any other return value indicates failure.

Example

Checkout the introduction course, the C/C++ samples on the download page or refer to the SOD Github Repository.

See also

sod_canny_edge_imagesod_image_to_blobsod_hough_lines_detectsod_img_blob_save_as_pngsod_crop_image.



Back