16 lines
770 B
C++
16 lines
770 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
|
|
class PNGHelper
|
|
{
|
|
private:
|
|
static int DecodePNG(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);
|
|
|
|
public:
|
|
static bool WritePNG(std::stringstream& stream, uint32_t* buffer, uint32_t xSize, uint32_t ySize,
|
|
uint32_t bitsPerPixel = 32);
|
|
static bool WritePNG(string filename, uint32_t* buffer, uint32_t xSize, uint32_t ySize, uint32_t bitsPerPixel = 32);
|
|
static bool ReadPNG(string filename, vector<uint8_t>& pngData, uint32_t& pngWidth, uint32_t& pngHeight);
|
|
static bool ReadPNG(vector<uint8_t> input, vector<uint8_t>& output, uint32_t& pngWidth, uint32_t& pngHeight);
|
|
};
|