1#ifndef __JBXL_CPP_PNG_TOOl_H_
2#define __JBXL_CPP_PNG_TOOl_H_
57#ifndef PNG_SIGNATURE_SIZE
58#define PNG_SIGNATURE_SIZE 8
85 PNGImage(
void) { init();}
86 virtual ~PNGImage(
void) {}
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();}
98 void readData(FILE* fp);
99 int writeData(FILE* fp);
106PNGImage readPNGFile (
const char* fname);
107PNGImage readPNGData (FILE* fp);
108int writePNGFile(
const char* fname, PNGImage* png);
109int writePNGData(FILE* fp, PNGImage* png);
128template <
typename T> MSGraph<T> PNGImage2MSGraph(PNGImage png)
137 vp.set(png.xs, png.ys, png.col);
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);
182template <
typename T> PNGImage MSGraph2PNGImage(MSGraph<T> vp)
192 png.setzero(vp.xs, vp.ys, vp.zs);
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];
#define JBXL_GRAPH_NODATA_ERROR
データが無い
#define JBXL_GRAPH_IVDCOLOR_ERROR
無効なカラー指定
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー