-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTgaTool.h
272 lines (229 loc) · 8.06 KB
/
TgaTool.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#ifndef __JBXL_CPP_TGA_TOOl_H_
#define __JBXL_CPP_TGA_TOOl_H_
/**
@brief TGAグラフィックデータ定義用ヘッダ
@file TgaTool.h
@version 1.0β
@date 2024 2/15
@author Fumi.Iseki (C)
*/
#include "Gdata.h"
#include "xtools.h"
#define TGA_HEADER_SIZE 18
#define TGA_FOOTER_SIZE 26
#define TGA_FOOTER_STR "TRUEVISION-XFILE."
//
namespace jbxl {
////////////////////////////////////////////////////////////////////////////////////////////
class TGAImage
{
public:
int xs;
int ys;
int col;
int length;
int state;
uByte hd[TGA_HEADER_SIZE];
uByte ft[TGA_FOOTER_SIZE];
uByte* gp; // BGRA, BGR, MONO, MA
public:
TGAImage(void) { init();}
virtual ~TGAImage(void) {}
void init(void); ///< グラフィックデータは解放しない
bool isNull(void); ///< グラフィックデータを持っていないか?
void clear(void); ///< 全空間を画素値 0 にする
void fill(uByte v=(uByte)0); ///< 全空間を画素値 v にする
void free(void); ///< グラフィックデータを開放する
uByte& point(int x, int y, int c) { return gp[col*(y*xs + x) + c];}
void getm(int x, int y, int c);
void setzero(int x, int y, int c);
};
//////////////////////////////////////////////////////////////////////////////////////////////////
TGAImage readTGAFile (const char* fname);
TGAImage readTGAData (FILE* fp);
int writeTGAFile(const char* fname, TGAImage* tga);
int writeTGAData(FILE* fp, TGAImage* tga);
int setupTGAData(TGAImage* tga, bool rle);
//int isTGAHeader(Buffer buf);
// template <typename T> MSGraph<T> TGAImage2MSGraph<T>(TGAImage tga)
// template <typename T> TGAImage MSGraph2TGAImage(MSGraph<T> vp)
/**
template <typename T> MSGraph<T> TGAImage2MSGraph(TGAImage tga)
TGAイメージデータを MSGraph型イメージデータに変換する
@param tga TGAイメージデータ
@return MSGraphイメージデータ
@retval JBXL_GRAPH_NODATA_ERROR @b state データ無し
@retval JBXL_GRAPH_MEMORY_ERROR @b state メモリ確保エラー
*/
template <typename T> MSGraph<T> TGAImage2MSGraph(TGAImage tga)
{
MSGraph<T> vp;
if (tga.isNull()) {
vp.state = JBXL_GRAPH_NODATA_ERROR;
return vp;
}
vp.set(tga.xs, tga.ys, tga.col);
if (vp.isNull()) return vp;
//
if (tga.col==4) vp.color = GRAPH_COLOR_BGRA;
else if (tga.col==3) vp.color = GRAPH_COLOR_BGR;
else if (tga.col==2) vp.color = GRAPH_COLOR_MA;
else if (tga.col==1) vp.color = GRAPH_COLOR_GRAY;
else {
vp.state = JBXL_GRAPH_IVDARG_ERROR;
vp.free();
return vp;
}
uByte dirx = tga.hd[17] & 0x10; // X方向 0: Left -> Right
uByte diry = tga.hd[17] & 0x20; // Y方向 0: Down -> Top
if (dirx==0x00 && diry==0x00) { // Left->Right, Down->Top
for (int k=0; k<tga.col; k++) {
int zp = k*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
vp.gp[yp + i] = (T)tga.point(i, tga.ys-1-j, k);
}
}
}
}
else if (dirx==0x00 && diry==0x20) { // Left->Right, Top->Down
for (int k=0; k<tga.col; k++) {
int zp = k*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
vp.gp[yp + i] = (T)tga.point(i, j, k);
}
}
}
}
else if (dirx==0x10 && diry==0x00) { // Right->Left, Down->Top
for (int k=0; k<tga.col; k++) {
int zp = k*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
vp.gp[yp + i] = (T)tga.point(tga.xs-1-i, tga.ys-1-j, k);
}
}
}
}
else {
for (int k=0; k<tga.col; k++) { // Right->Left, Top->Down
int zp = k*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
vp.gp[yp + i] = (T)tga.point(tga.xs-1-i, j, k);
}
}
}
}
return vp;
}
/**
template <typename T> TGAImage MSGraph2TGAImage(MSGraph<T> vp, bool rle)
MSGraph型イメージデータを TGAイメージデータに変換する
ヘッダ情報は変換しない(別途変換する).
@param vp MSGraph型イメージデータ
@param rle RLE(連長圧縮)を行うかどうか
@return TGAイメージデータ
@retval JBXL_GRAPH_NODATA_ERROR @b state データ無し
@retval JBXL_GRAPH_MEMORY_ERROR @b state メモリ確保エラー
*/
template <typename T> TGAImage MSGraph2TGAImage(MSGraph<T> vp, bool rle)
{
TGAImage tga;
tga.init();
if (vp.isNull()) {
tga.state = JBXL_GRAPH_NODATA_ERROR;
return tga;
}
tga.setzero(vp.xs, vp.ys, vp.zs);
tga.length = tga.xs*tga.ys*tga.col;
if (tga.isNull()) return tga;
if (vp.color==GRAPH_COLOR_UNKNOWN) {
if (vp.zs==1) vp.color = GRAPH_COLOR_GRAY;
else if (vp.zs==2) vp.color = GRAPH_COLOR_MA;
else if (vp.zs==3) vp.color = GRAPH_COLOR_RGB;
else if (vp.zs==4) vp.color = GRAPH_COLOR_RGBA;
}
//
if (vp.color==GRAPH_COLOR_BGRA || vp.color==GRAPH_COLOR_BGR || vp.color==GRAPH_COLOR_GRAY || vp.color==GRAPH_COLOR_MA) {
for (int k=0; k<tga.col; k++) {
int zp = k*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
tga.point(i, j, k) = (uByte)vp.gp[yp + i];
}
}
}
}
//
else if (vp.color==GRAPH_COLOR_RGB || vp.color==GRAPH_COLOR_RGBA) {
for (int k=0; k<3; k++) {
int zp = (2-k)*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
tga.point(i, j, k) = (uByte)vp.gp[yp + i];
}
}
}
if (vp.color==GRAPH_COLOR_RGBA) { // αチャンネル
int zp = 3*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
tga.point(i, j, 3) = (uByte)vp.gp[yp + i];
}
}
}
}
//
else if (vp.color==GRAPH_COLOR_ABGR) {
for (int j=0; j<tga.ys; j++) { // αチャンネル
int yp = j*tga.xs;
for (int i=0; i<tga.xs; i++) {
tga.point(i, j, 3) = (uByte)vp.gp[yp + i];
}
}
for (int k=1; k<4; k++) {
int zp = k*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
tga.point(i, j, k-1) = (uByte)vp.gp[yp + i];
}
}
}
}
//
else if (vp.color==GRAPH_COLOR_ARGB) {
for (int j=0; j<tga.ys; j++) { // αチャンネル
int yp = j*tga.xs;
for (int i=0; i<tga.xs; i++) {
tga.point(i, j, 3) = (uByte)vp.gp[yp + i];
}
}
for (int k=1; k<4; k++) {
int zp = (4-k)*tga.xs*tga.ys;
for (int j=0; j<tga.ys; j++) {
int yp = zp + j*tga.xs;
for (int i=0; i<tga.xs; i++) {
tga.point(i, j, k-1) = (uByte)vp.gp[yp + i];
}
}
}
}
else {
tga.state = JBXL_GRAPH_IVDARG_ERROR;
tga.free();
}
if (tga.state==0) setupTGAData(&tga, rle);
return tga;
}
} // namespace
#endif