Go to the source code of this file.
| Typedefs | |
| typedef struct MR_Image | MR_Image | 
| typedef struct MR_expected_MR_Image_std_string | MR_expected_MR_Image_std_string | 
| typedef struct MR_expected_void_std_string | MR_expected_void_std_string | 
| typedef struct MR_std_istream | MR_std_istream | 
| Functions | |
| MRC_API MR_expected_MR_Image_std_string * | MR_ImageLoad_fromJpeg_1_std_filesystem_path (const char *path, const char *path_end) | 
| MRC_API MR_expected_MR_Image_std_string * | MR_ImageLoad_fromJpeg_1_std_istream (MR_std_istream *in) | 
| MRC_API MR_expected_MR_Image_std_string * | MR_ImageLoad_fromJpeg_2 (const char *data, MR_uint64_t size) | 
| MRC_API MR_expected_void_std_string * | MR_ImageSave_toJpeg (const MR_Image *image, const char *path, const char *path_end) | 
| typedef struct MR_expected_MR_Image_std_string MR_expected_MR_Image_std_string | 
| typedef struct MR_expected_void_std_string MR_expected_void_std_string | 
| typedef struct MR_std_istream MR_std_istream | 
| MRC_API MR_expected_MR_Image_std_string * MR_ImageLoad_fromJpeg_1_std_filesystem_path | ( | const char * | path, | 
| const char * | path_end ) | 
loads from .jpg format Generated from function MR::ImageLoad::fromJpeg. Parameter path is a UTF-8 encoded filesystem path. Never returns null. Returns an instance allocated on the heap! Must call MR_expected_MR_Image_std_string_Destroy() to free it when you're done using it. 
| MRC_API MR_expected_MR_Image_std_string * MR_ImageLoad_fromJpeg_1_std_istream | ( | MR_std_istream * | in | ) | 
Generated from function MR::ImageLoad::fromJpeg. Parameter in can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_expected_MR_Image_std_string_Destroy() to free it when you're done using it. 
| MRC_API MR_expected_MR_Image_std_string * MR_ImageLoad_fromJpeg_2 | ( | const char * | data, | 
| MR_uint64_t | size ) | 
Generated from function MR::ImageLoad::fromJpeg. Never returns null. Returns an instance allocated on the heap! Must call MR_expected_MR_Image_std_string_Destroy() to free it when you're done using it. 
| MRC_API MR_expected_void_std_string * MR_ImageSave_toJpeg | ( | const MR_Image * | image, | 
| const char * | path, | ||
| const char * | path_end ) | 
saves in .jpg format Generated from function MR::ImageSave::toJpeg. Parameter image can not be null. It is a single object. Parameter path is a UTF-8 encoded filesystem path. Never returns null. Returns an instance allocated on the heap! Must call MR_expected_void_std_string_Destroy() to free it when you're done using it.