Files
lime/project/include/graphics/format/PNG.h
2018-07-18 17:32:51 -07:00

28 lines
382 B
C++

#ifndef LIME_GRAPHICS_FORMAT_PNG_H
#define LIME_GRAPHICS_FORMAT_PNG_H
#include <graphics/ImageBuffer.h>
#include <utils/Bytes.h>
#include <utils/Resource.h>
namespace lime {
class PNG {
public:
static bool Decode (Resource *resource, ImageBuffer *imageBuffer, bool decodeData = true);
static bool Encode (ImageBuffer *imageBuffer, Bytes *bytes);
};
}
#endif