TDME2 1.9.121
PNGTextureWriter.h
Go to the documentation of this file.
1#pragma once
2
3#include <ext/libpng/png.h>
4
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
10
11using std::string;
12using std::vector;
13
15
16/**
17 * PNG texture writer class
18 * @author Andreas Drewke
19 * @version $Id$
20 */
22{
23 friend class Texture;
24private:
25 /**
26 * PNG output stream
27 */
29 public:
30
31 /**
32 * Public constructor
33 */
34 PNGOutputStream(vector<uint8_t>* data): data(data) {
35 }
36
37 /**
38 * Destructor
39 */
41 }
42
43 /**
44 * Read byte
45 * @param inBytes in bytes to write
46 * @param inBytesToRead in bytes to read
47 */
48 void writeBytes(int8_t* inBytes, int32_t inBytesToRead) {
49 for (int32_t i = 0; i < inBytesToRead; i++) {
50 data->push_back(inBytes[i]);
51 }
52 }
53
54 private:
55 vector<uint8_t>* data;
56 };
57
58 /**
59 * Write PNG data to memory
60 * @param png_ptr png structure
61 * @param inBytes in bytes
62 * @param inBytesToWrite in bytes to write
63 */
64 static void writePNGDataToMemory(png_structp png_ptr, png_bytep inBytes, png_size_t inBytesToWrite);
65
66 /**
67 * Flush PNG data
68 * @param png_ptr png structure
69 */
70 static void flushPNGDataToMemory(png_structp png_ptr);
71
72public:
73
74 /**
75 * Writes a texture to PNG file
76 * @param texture texture
77 * @param pathName path name
78 * @param fileName file name
79 * @param removeAlphaChannel remove alpha channel
80 * @param flipY flip Y
81 * @return texture data instance or null
82 */
83 static bool write(Texture* texture, const string& pathName, const string& fileName, bool removeAlphaChannel = true, bool flipY = true);
84
85 /**
86 * Writes a texture to PNG using a data vector
87 * @param texture texture
88 * @param pngData PNG data
89 * @param removeAlphaChannel remove alpha channel
90 * @param flipY flip Y
91 * @return texture data instance or null
92 */
93 static bool write(Texture* texture, vector<uint8_t>& pngData, bool removeAlphaChannel = true, bool flipY = true);
94
95};
void writeBytes(int8_t *inBytes, int32_t inBytesToRead)
Read byte.
PNGOutputStream(vector< uint8_t > *data)
Public constructor.
static bool write(Texture *texture, const string &pathName, const string &fileName, bool removeAlphaChannel=true, bool flipY=true)
Writes a texture to PNG file.
static void writePNGDataToMemory(png_structp png_ptr, png_bytep inBytes, png_size_t inBytesToWrite)
Write PNG data to memory.
static void flushPNGDataToMemory(png_structp png_ptr)
Flush PNG data.