| 5805 | } |
| 5806 | |
| 5807 | static unsigned isRGBICCProfile(const unsigned char* profile, unsigned size) { |
| 5808 | /* See comment in isGrayICCProfile*/ |
| 5809 | if(size < 20) return 0; |
| 5810 | return profile[16] == 'R' && profile[17] == 'G' && profile[18] == 'B' && profile[19] == ' '; |
| 5811 | } |
| 5812 | #endif /*LODEPNG_COMPILE_ANCILLARY_CHUNKS*/ |
| 5813 | |
| 5814 | unsigned lodepng_encode(unsigned char** out, size_t* outsize, |