22 void save_png(
Image &img, std::string file,
bool fast =
true);
31 void load_png(
Image &img, std::string file,
bool disableIndexing =
false);
41 void load_png(
Image &img, uint8_t *buffer,
int size,
bool disableIndexing =
false);
141 void load_img(
Image &img, std::string file);
151 void load_img(
Image &img, uint8_t *buffer,
int size);
161 void save_img(
Image &img, std::string file,
bool fast =
true);
172 void save_img_safe(
Image &img, std::string file,
bool fast =
true);
182 bool append_ext(std::string *file,
bool prod =
false);
void save_jpeg(Image &img, std::string file)
Save an image to a JPEG (8-bit!) file.
Definition jpegio.cpp:130
void save_qoi(Image &img, std::string file)
Save an image to a QOI file.
Definition qoiio.cpp:14
void load_pbm(Image &img, std::string file)
Load an image from a PBM (and similar) file.
Definition pbmio.cpp:87
void load_png(Image &img, std::string file, bool disableIndexing=false)
Load an image from a PNG file.
Definition pngio.cpp:91
void save_pbm(Image &img, std::string file)
Save an image to a PBM (and similar) file.
Definition pbmio.cpp:14
void load_tiff(Image &img, std::string file)
Load an image from a TIFF file. Supports part of GeoTIFF specification.
Definition tiffio.cpp:100
void load_j2k(Image &img, std::string file)
Load an image from a JPEG2000 file.
Definition j2kio.cpp:125
void save_png(Image &img, std::string file, bool fast=true)
Save an image to a PNG file.
Definition pngio.cpp:13
void load_qoi(Image &img, std::string file)
Load an image from a QOI file.
Definition qoiio.cpp:62
void save_j2k(Image &img, std::string file)
Save an image to a JPEG2000 file.
Definition j2kio.cpp:13
void save_tiff(Image &img, std::string file)
Save an image to a TIFF file. Supports part of GeoTIFF specification.
Definition tiffio.cpp:17
void load_jpeg(Image &img, std::string file)
Load an image from a JPEG (8-bit!) file.
Definition jpegio.cpp:25