JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
JpegTool.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_JPEG_TOOl_H_
2#define __JBXL_CPP_JPEG_TOOl_H_
3
15#include "Gdata.h"
16#include "xtools.h"
17
18#ifndef HAVE_JPEGLIB_H
19#ifndef DISABLE_JPEG
20#define DISABLE_JPEG
21#endif
22#endif
23
24#if defined(DISABLE_JPEG) || defined(DISABLE_JPEGLIB)
25#undef ENABLE_JPEGLIB // for old version
26#undef ENABLE_JPEG
27#endif
28
29#ifdef ENABLE_JPEGLIB
30#define ENABLE_JPEG
31#endif
32
33
34#ifdef ENABLE_JPEG
35
36#undef HAVE_STDLIB_H
37#include <jpeglib.h>
38
39#ifdef WIN32
40#pragma comment(lib, "libjpeg.lib")
41#endif
42
43
44//
45namespace jbxl {
46
48
49class JPEGImage
50{
51public:
52 int xs;
53 int ys;
54 int col;
55 int state;
56
57 JSAMPLE* gp;
58 JSAMPARRAY image;
59
60public:
61 JPEGImage(void) { init();}
62 virtual ~JPEGImage(void) {}
63
64 void init(void);
65 bool isNull(void);
66 void clear(void);
67 void fill(JSAMPLE v=(JSAMPLE)0);
68 void free(void);
69
70 JSAMPLE& point(int x, int y, int c) { return image[y][x*col + c];}
71 void getm(int x, int y, int c);
72 void set (int x, int y, int c);
73};
74
75
77
78JPEGImage readJPEGFile (const char* fname);
79JPEGImage readJPEGData (FILE* fp);
80int writeJPEGFile(const char* fname, JPEGImage* jp, int qulty);
81int writeJPEGData(FILE* fp, JPEGImage* jp, int qulty);
82
83int isJPEGHeader(Buffer buf);
84
85CmnHead JPEGImage2CmnHead(JPEGImage jp);
86JPEGImage CmnHead2JPEGImage(CmnHead hd);
87
88
89// template <typename T> MSGraph<T> JPEGImage2MSGraph(JPEGImage jp)
90// template <typename T> JPEGImage MSGraph2JPEGImage(MSGraph<T> vp)
91
92
103template <typename T> MSGraph<T> JPEGImage2MSGraph(JPEGImage jp)
104{
105 MSGraph<T> vp;
106
107 if (jp.isNull()) {
108 vp.state = JBXL_GRAPH_NODATA_ERROR;
109 return vp;
110 }
111
112 vp.set(jp.xs, jp.ys, jp.col);
113 if (vp.isNull()) return vp;
114 //if (jp.col==3) vp.color = GRAPH_COLOR_PRGB;
115 if (jp.col==3) vp.color = GRAPH_COLOR_RGB;
116
117 for (int k=0; k<jp.col; k++) {
118 int zp = k*jp.xs*jp.ys;
119 for (int j=0; j<jp.ys; j++) {
120 int yp = zp + j*jp.xs;
121 for (int i=0; i<jp.xs; i++) {
122 vp.gp[yp + i] = (T)jp.point(i, j, k);
123 }
124 }
125 }
126
127 return vp;
128}
129
130
141template <typename T> JPEGImage MSGraph2JPEGImage(MSGraph<T> vp)
142{
143 JPEGImage jp;
144
145 if (vp.isNull()) {
146 jp.state = JBXL_GRAPH_NODATA_ERROR;
147 return jp;
148 }
149
150 jp.set(vp.xs, vp.ys, vp.zs);
151 if (jp.isNull()) return jp;
152
153 for (int k=0; k<jp.col; k++) {
154 int zp = k*jp.xs*jp.ys;
155 for (int j=0; j<jp.ys; j++) {
156 int yp = zp + j*jp.xs;
157 for (int i=0; i<jp.xs; i++) {
158 jp.point(i, j, k) = (JSAMPLE)vp.gp[yp + i];
159 }
160 }
161 }
162
163 return jp;
164}
165
166
167} // namespace
168
169
170#endif // ENABLE_JPEG
171
172#endif // __JBXL_CPP_JPEG_TOOl_H_
173
174
175
グラフィックデータ定義用ヘッダ
#define GRAPH_COLOR_RGB
Definition gheader.h:270
#define JBXL_GRAPH_NODATA_ERROR
データが無い
Definition jbxl_state.h:171
Definition Brep.h:29
int isNull(void *p)
Definition tools.cpp:51
汎用拡張ツールヘッダ