| 5896 | } |
| 5897 | |
| 5898 | unsigned lodepng_encode24_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5899 | { |
| 5900 | return lodepng_encode_file(filename, image, w, h, LCT_RGB, 8); |
| 5901 | } |
| 5902 | #endif /*LODEPNG_COMPILE_DISK*/ |
| 5903 | |
| 5904 | void lodepng_encoder_settings_init(LodePNGEncoderSettings* settings) |
nothing calls this directly
no test coverage detected