JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
TgaTool.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_TGA_TOOl_H_
2#define __JBXL_CPP_TGA_TOOl_H_
3
12#include "Gdata.h"
13#include "xtools.h"
14
15
16#define TGA_HEADER_SIZE 18
17#define TGA_FOOTER_SIZE 26
18#define TGA_FOOTER_STR "TRUEVISION-XFILE."
19
20
21//
22namespace jbxl {
23
24
26
28{
29public:
30 int xs;
31 int ys;
32 int col;
33 int length;
34 int state;
35
38 uByte* gp; // BGRA, BGR, MONO, MA
39
40public:
41 TGAImage(void) { init();}
42 virtual ~TGAImage(void) {}
43
44 void init(void);
45 bool isNull(void);
46 void clear(void);
47 void fill(uByte v=(uByte)0);
48 void free(void);
49
50 uByte& point(int x, int y, int c) { return gp[col*(y*xs + x) + c];}
51 void getm(int x, int y, int c);
52 void setzero(int x, int y, int c);
53};
54
55
56
58
59TGAImage readTGAFile (const char* fname);
60TGAImage readTGAData (FILE* fp);
61int writeTGAFile(const char* fname, TGAImage* tga);
62int writeTGAData(FILE* fp, TGAImage* tga);
63
64int setupTGAData(TGAImage* tga, bool rle);
65
66//int isTGAHeader(Buffer buf);
67
68// template <typename T> MSGraph<T> TGAImage2MSGraph<T>(TGAImage tga)
69// template <typename T> TGAImage MSGraph2TGAImage(MSGraph<T> vp)
70
71
82template <typename T> MSGraph<T> TGAImage2MSGraph(TGAImage tga)
83{
84 MSGraph<T> vp;
85
86 if (tga.isNull()) {
88 return vp;
89 }
90
91 vp.set(tga.xs, tga.ys, tga.col);
92 if (vp.isNull()) return vp;
93 //
94 if (tga.col==4) vp.color = GRAPH_COLOR_BGRA;
95 else if (tga.col==3) vp.color = GRAPH_COLOR_BGR;
96 else if (tga.col==2) vp.color = GRAPH_COLOR_MA;
97 else if (tga.col==1) vp.color = GRAPH_COLOR_GRAY;
98 else {
100 vp.free();
101 return vp;
102 }
103
104 uByte dirx = tga.hd[17] & 0x10; // X方向 0: Left -> Right
105 uByte diry = tga.hd[17] & 0x20; // Y方向 0: Down -> Top
106
107 if (dirx==0x00 && diry==0x00) { // Left->Right, Down->Top
108 for (int k=0; k<tga.col; k++) {
109 int zp = k*tga.xs*tga.ys;
110 for (int j=0; j<tga.ys; j++) {
111 int yp = zp + j*tga.xs;
112 for (int i=0; i<tga.xs; i++) {
113 vp.gp[yp + i] = (T)tga.point(i, tga.ys-1-j, k);
114 }
115 }
116 }
117 }
118 else if (dirx==0x00 && diry==0x20) { // Left->Right, Top->Down
119 for (int k=0; k<tga.col; k++) {
120 int zp = k*tga.xs*tga.ys;
121 for (int j=0; j<tga.ys; j++) {
122 int yp = zp + j*tga.xs;
123 for (int i=0; i<tga.xs; i++) {
124 vp.gp[yp + i] = (T)tga.point(i, j, k);
125 }
126 }
127 }
128 }
129 else if (dirx==0x10 && diry==0x00) { // Right->Left, Down->Top
130 for (int k=0; k<tga.col; k++) {
131 int zp = k*tga.xs*tga.ys;
132 for (int j=0; j<tga.ys; j++) {
133 int yp = zp + j*tga.xs;
134 for (int i=0; i<tga.xs; i++) {
135 vp.gp[yp + i] = (T)tga.point(tga.xs-1-i, tga.ys-1-j, k);
136 }
137 }
138 }
139 }
140 else {
141 for (int k=0; k<tga.col; k++) { // Right->Left, Top->Down
142 int zp = k*tga.xs*tga.ys;
143 for (int j=0; j<tga.ys; j++) {
144 int yp = zp + j*tga.xs;
145 for (int i=0; i<tga.xs; i++) {
146 vp.gp[yp + i] = (T)tga.point(tga.xs-1-i, j, k);
147 }
148 }
149 }
150 }
151 return vp;
152}
153
154
168template <typename T> TGAImage MSGraph2TGAImage(MSGraph<T> vp, bool rle)
169{
170 TGAImage tga;
171 tga.init();
172
173 if (vp.isNull()) {
175 return tga;
176 }
177
178 tga.setzero(vp.xs, vp.ys, vp.zs);
179 tga.length = tga.xs*tga.ys*tga.col;
180 if (tga.isNull()) return tga;
181
182 if (vp.color==GRAPH_COLOR_UNKNOWN) {
183 if (vp.zs==1) vp.color = GRAPH_COLOR_GRAY;
184 else if (vp.zs==2) vp.color = GRAPH_COLOR_MA;
185 else if (vp.zs==3) vp.color = GRAPH_COLOR_RGB;
186 else if (vp.zs==4) vp.color = GRAPH_COLOR_RGBA;
187 }
188
189 //
191 for (int k=0; k<tga.col; k++) {
192 int zp = k*tga.xs*tga.ys;
193 for (int j=0; j<tga.ys; j++) {
194 int yp = zp + j*tga.xs;
195 for (int i=0; i<tga.xs; i++) {
196 tga.point(i, j, k) = (uByte)vp.gp[yp + i];
197 }
198 }
199 }
200 }
201 //
202 else if (vp.color==GRAPH_COLOR_RGB || vp.color==GRAPH_COLOR_RGBA) {
203 for (int k=0; k<3; k++) {
204 int zp = (2-k)*tga.xs*tga.ys;
205 for (int j=0; j<tga.ys; j++) {
206 int yp = zp + j*tga.xs;
207 for (int i=0; i<tga.xs; i++) {
208 tga.point(i, j, k) = (uByte)vp.gp[yp + i];
209 }
210 }
211 }
212 if (vp.color==GRAPH_COLOR_RGBA) { // αチャンネル
213 int zp = 3*tga.xs*tga.ys;
214 for (int j=0; j<tga.ys; j++) {
215 int yp = zp + j*tga.xs;
216 for (int i=0; i<tga.xs; i++) {
217 tga.point(i, j, 3) = (uByte)vp.gp[yp + i];
218 }
219 }
220 }
221 }
222 //
223 else if (vp.color==GRAPH_COLOR_ABGR) {
224 for (int j=0; j<tga.ys; j++) { // αチャンネル
225 int yp = j*tga.xs;
226 for (int i=0; i<tga.xs; i++) {
227 tga.point(i, j, 3) = (uByte)vp.gp[yp + i];
228 }
229 }
230 for (int k=1; k<4; k++) {
231 int zp = k*tga.xs*tga.ys;
232 for (int j=0; j<tga.ys; j++) {
233 int yp = zp + j*tga.xs;
234 for (int i=0; i<tga.xs; i++) {
235 tga.point(i, j, k-1) = (uByte)vp.gp[yp + i];
236 }
237 }
238 }
239 }
240 //
241 else if (vp.color==GRAPH_COLOR_ARGB) {
242 for (int j=0; j<tga.ys; j++) { // αチャンネル
243 int yp = j*tga.xs;
244 for (int i=0; i<tga.xs; i++) {
245 tga.point(i, j, 3) = (uByte)vp.gp[yp + i];
246 }
247 }
248 for (int k=1; k<4; k++) {
249 int zp = (4-k)*tga.xs*tga.ys;
250 for (int j=0; j<tga.ys; j++) {
251 int yp = zp + j*tga.xs;
252 for (int i=0; i<tga.xs; i++) {
253 tga.point(i, j, k-1) = (uByte)vp.gp[yp + i];
254 }
255 }
256 }
257 }
258 else {
260 tga.free();
261 }
262
263 if (tga.state==0) setupTGAData(&tga, rle);
264
265 return tga;
266}
267
268
269} // namespace
270
271
272#endif
グラフィックデータ定義用ヘッダ
#define TGA_HEADER_SIZE
Definition TgaTool.h:16
#define TGA_FOOTER_SIZE
Definition TgaTool.h:17
T * gp
グラフィックデータへのポインタ.
Definition Gdata.h:81
int color
データのカラータイプ
Definition Gdata.h:89
int zs
zサイズ. 4Byte. 2Dの場合は 1.
Definition Gdata.h:80
int xs
xサイズ. 4Byte.
Definition Gdata.h:78
int state
エラー制御
Definition Gdata.h:90
void free(void)
グラフィックデータを開放する
Definition Gdata.h:378
void set(RBound< int > rb, T v=(T) 0, T b=(T) 0, double rz=1.0)
Definition Gdata.h:207
bool isNull(void)
グラフィックデータを持っていないか?
Definition Gdata.h:194
int ys
yサイズ. 4Byte.
Definition Gdata.h:79
void fill(uByte v=(uByte) 0)
全空間を画素値 v にする
Definition TgaTool.cpp:65
void init(void)
グラフィックデータは解放しない
Definition TgaTool.cpp:20
uByte & point(int x, int y, int c)
Definition TgaTool.h:50
virtual ~TGAImage(void)
Definition TgaTool.h:42
void setzero(int x, int y, int c)
Definition TgaTool.cpp:89
uByte * gp
Definition TgaTool.h:38
uByte ft[TGA_FOOTER_SIZE]
Definition TgaTool.h:37
void free(void)
グラフィックデータを開放する
Definition TgaTool.cpp:77
TGAImage(void)
Definition TgaTool.h:41
bool isNull(void)
グラフィックデータを持っていないか?
Definition TgaTool.cpp:45
void clear(void)
全空間を画素値 0 にする
Definition TgaTool.cpp:55
void getm(int x, int y, int c)
Definition TgaTool.cpp:108
uByte hd[TGA_HEADER_SIZE]
Definition TgaTool.h:36
unsigned char uByte
1Byte
Definition common.h:332
#define GRAPH_COLOR_ABGR
Definition gheader.h:291
#define GRAPH_COLOR_UNKNOWN
0x0070
Definition gheader.h:302
#define GRAPH_COLOR_RGBA
Definition gheader.h:283
#define GRAPH_COLOR_BGRA
Definition gheader.h:295
#define GRAPH_COLOR_ARGB
Definition gheader.h:279
#define GRAPH_COLOR_RGB
Definition gheader.h:270
#define GRAPH_COLOR_MA
0x0014
Definition gheader.h:260
#define GRAPH_COLOR_BGR
Definition gheader.h:274
#define GRAPH_COLOR_GRAY
Definition gheader.h:244
#define JBXL_GRAPH_IVDARG_ERROR
無効な引数
Definition jbxl_state.h:178
#define JBXL_GRAPH_NODATA_ERROR
データが無い
Definition jbxl_state.h:171
Definition Brep.h:29
int writeTGAData(FILE *fp, TGAImage *tga)
Definition TgaTool.cpp:365
TGAImage readTGAFile(const char *fname)
Definition TgaTool.cpp:136
TGAImage MSGraph2TGAImage(MSGraph< T > vp, bool rle)
Definition TgaTool.h:168
TGAImage readTGAData(FILE *fp)
Definition TgaTool.cpp:169
int setupTGAData(TGAImage *tga, bool rle)
Definition TgaTool.cpp:390
int writeTGAFile(const char *fname, TGAImage *tga)
Definition TgaTool.cpp:328
MSGraph< T > TGAImage2MSGraph(TGAImage tga)
Definition TgaTool.h:82
汎用拡張ツールヘッダ