mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
11 lines
220 B
C
11 lines
220 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <FreeImage.h>
|
||
|
|
||
|
|
||
|
class ImageIO
|
||
|
{
|
||
|
public:
|
||
|
static std::vector<unsigned char> loadFromMemoryRGBA32(const unsigned char * data, const size_t size, size_t & width, size_t & height);
|
||
|
};
|