Newer
Older
invertedlogic / InvertedLogic / iLFramework / toolkit / include / PicoPNG.h
@John Ryland John Ryland on 10 Nov 2019 301 bytes rename
#ifndef PICO_PNG_H
#define PICO_PNG_H


#include <vector>
#include <cstdlib>


int DecodePNG(std::vector<unsigned char>& out_image, unsigned long& image_width, unsigned long& image_height, const unsigned char* in_png, size_t in_size, bool convert_to_rgba32 = true);


#endif // PICO_PNG_H