| 5863 | } |
| 5864 | |
| 5865 | unsigned lodepng_encode32_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5866 | { |
| 5867 | return lodepng_encode_file(filename, image, w, h, LCT_RGBA, 8); |
| 5868 | } |
| 5869 | |
| 5870 | unsigned lodepng_encode24_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5871 | { |
nothing calls this directly
no test coverage detected