JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
PngTool.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_PNG_TOOl_H_
2#define __JBXL_CPP_PNG_TOOl_H_
3
14#include "Gdata.h"
15#include "xtools.h"
16
17/*
18#ifndef HAVE_PNG_H
19#ifndef DISABLE_PNG
20#define DISABLE_PNG
21#endif
22#endif
23*/
24
25#ifdef DISABLE_PNG
26#undef ENABLE_PNG
27#endif
28
29
30#ifdef ENABLE_PNG
31
32#include <png.h>
33
34/*
35#ifdef WIN32
36#if defined(_DEBUG)
37#pragma comment(lib, "libpng16d.lib")
38#else
39#pragma comment(lib, "libpng16.lib")
40#endif
41#endif
42*/
43
44/*
45type
46#define PNG_COLOR_TYPE_GRAY 0
47#define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)
48#define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR)
49#define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA)
50#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA)
51// aliases
52#define PNG_COLOR_TYPE_RGBA PNG_COLOR_TYPE_RGB_ALPHA
53#define PNG_COLOR_TYPE_GA PNG_COLOR_TYPE_GRAY_ALPHA
54*/
55
56
57#ifndef PNG_SIGNATURE_SIZE
58#define PNG_SIGNATURE_SIZE 8
59#endif
60
61
62//
63namespace jbxl {
64
65
67
68class PNGImage
69{
70public:
71 int xs;
72 int ys;
73 int col;
74 int length;
75 int state;
76
77 uByte type;
78 uByte* gp; // Bitmap
79
80private:
81 png_structp strct;
82 png_infop info;
83
84public:
85 PNGImage(void) { init();}
86 virtual ~PNGImage(void) {}
87
88 void init(void);
89 bool isNull(void);
90 void clear(void);
91 void fill(uByte v=(uByte)0);
92 void free(void);
93
94 uByte& point(int x, int y, int c) { return gp[col*(y*xs + x) + c];}
95 void getm(int x, int y, int c);
96 void setzero(int x, int y, int c) { getm(x, y, c); clear();}
97
98 void readData(FILE* fp);
99 int writeData(FILE* fp);
100};
101
102
103
105
106PNGImage readPNGFile (const char* fname);
107PNGImage readPNGData (FILE* fp);
108int writePNGFile(const char* fname, PNGImage* png);
109int writePNGData(FILE* fp, PNGImage* png);
110
111//int isPNGHeader(Buffer buf);
112
113// template <typename T> MSGraph<T> PNGImage2MSGraph<T>(PNGImage png)
114// template <typename T> PNGImage MSGraph2PNGImage(MSGraph<T> vp)
115
116
128template <typename T> MSGraph<T> PNGImage2MSGraph(PNGImage png)
129{
130 MSGraph<T> vp;
131
132 if (png.isNull()) {
133 vp.state = JBXL_GRAPH_NODATA_ERROR;
134 return vp;
135 }
136
137 vp.set(png.xs, png.ys, png.col);
138 if (vp.isNull()) {
139 vp.state = JBXL_GRAPH_MEMORY_ERROR;
140 return vp;
141 }
142 //
143 if (png.col==4) vp.color = GRAPH_COLOR_BGRA;
144 else if (png.col==3) vp.color = GRAPH_COLOR_BGR;
145 else if (png.col==2) vp.color = GRAPH_COLOR_GA;
146 else if (png.col==1) vp.color = GRAPH_COLOR_GRAY;
147 else {
148 vp.free();
149 vp.init();
150 vp.state = JBXL_GRAPH_IVDCOLOR_ERROR;
151 return vp;
152 }
153
154 for (int k=0; k<png.col; k++) {
155 int zp = k*png.xs*png.ys;
156 for (int j=0; j<png.ys; j++) {
157 int yp = zp + j*png.xs;
158 for (int i=0; i<png.xs; i++) {
159 vp.gp[yp + i] = (T)png.point(i, png.ys-1-j, k);
160 }
161 }
162 }
163
164 return vp;
165}
166
167
182template <typename T> PNGImage MSGraph2PNGImage(MSGraph<T> vp)
183{
184 PNGImage png;
185 png.init();
186
187 if (vp.isNull()) {
188 png.state = JBXL_GRAPH_NODATA_ERROR;
189 return png;
190 }
191
192 png.setzero(vp.xs, vp.ys, vp.zs);
193 if (png.isNull()) {
194 png.init();
195 png.state = JBXL_GRAPH_MEMORY_ERROR;
196 return png;
197 }
198
199 if (vp.color==GRAPH_COLOR_UNKNOWN) {
200 if (vp.zs==1) vp.color = GRAPH_COLOR_GRAY;
201 else if (vp.zs==2) vp.color = GRAPH_COLOR_GA;
202 else if (vp.zs==3) vp.color = GRAPH_COLOR_RGB;
203 else if (vp.zs==4) vp.color = GRAPH_COLOR_RGBA;
204 }
205 if (vp.color==GRAPH_COLOR_GRAY) png.type = PNG_COLOR_TYPE_GRAY;
206 else if (vp.color==GRAPH_COLOR_GA) png.type = PNG_COLOR_TYPE_GA;
207 else if (vp.color==GRAPH_COLOR_RGB) png.type = PNG_COLOR_TYPE_RGB;
208 else if (vp.color==GRAPH_COLOR_RGBA) png.type = PNG_COLOR_TYPE_RGBA;
209 else {
210 png.free();
211 png.init();
212 png.state = JBXL_GRAPH_IVDCOLOR_ERROR;
213 return png;
214 }
215
216 for (int k=0; k<png.col; k++) {
217 int zp = k*png.xs*png.ys;
218 for (int j=0; j<png.ys; j++) {
219 int yp = zp + j*png.xs;
220 for (int i=0; i<png.xs; i++) {
221 png.point(i, j, k) = (uByte)vp.gp[yp + i];
222 }
223 }
224 }
225
226 png.state = JBXL_NORMAL;
227 return png;
228}
229
230
231} // namespace
232
233
234#endif // ENABLE_PNG
235
236#endif // __JBXL_CPP_PNG_TOOl_H_
グラフィックデータ定義用ヘッダ
unsigned char uByte
1Byte
Definition common.h:332
#define GRAPH_COLOR_UNKNOWN
0x0070
Definition gheader.h:302
#define GRAPH_COLOR_GA
Definition gheader.h:263
#define GRAPH_COLOR_RGBA
Definition gheader.h:283
#define GRAPH_COLOR_BGRA
Definition gheader.h:295
#define GRAPH_COLOR_RGB
Definition gheader.h:270
#define GRAPH_COLOR_BGR
Definition gheader.h:274
#define GRAPH_COLOR_GRAY
Definition gheader.h:244
#define JBXL_GRAPH_NODATA_ERROR
データが無い
Definition jbxl_state.h:171
#define JBXL_GRAPH_IVDCOLOR_ERROR
無効なカラー指定
Definition jbxl_state.h:183
#define JBXL_NORMAL
正常
Definition jbxl_state.h:32
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー
Definition jbxl_state.h:170
Definition Brep.h:29
int isNull(void *p)
Definition tools.cpp:51
汎用拡張ツールヘッダ