1#ifndef __JBXL_CPP_TGA_TOOl_H_
2#define __JBXL_CPP_TGA_TOOl_H_
16#define TGA_HEADER_SIZE 18
17#define TGA_FOOTER_SIZE 26
18#define TGA_FOOTER_STR "TRUEVISION-XFILE."
51 void getm(
int x,
int y,
int c);
52 void setzero(
int x,
int y,
int c);
92 if (vp.
isNull())
return vp;
104 uByte dirx = tga.
hd[17] & 0x10;
105 uByte diry = tga.
hd[17] & 0x20;
107 if (dirx==0x00 && diry==0x00) {
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);
118 else if (dirx==0x00 && diry==0x20) {
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);
129 else if (dirx==0x10 && diry==0x00) {
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);
141 for (
int k=0; k<tga.
col; k++) {
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);
180 if (tga.
isNull())
return tga;
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++) {
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++) {
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++) {
224 for (
int j=0; j<tga.
ys; j++) {
226 for (
int i=0; i<tga.
xs; i++) {
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++) {
242 for (
int j=0; j<tga.
ys; j++) {
244 for (
int i=0; i<tga.
xs; i++) {
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++) {
int zs
zサイズ. 4Byte. 2Dの場合は 1.
void free(void)
グラフィックデータを開放する
void set(RBound< int > rb, T v=(T) 0, T b=(T) 0, double rz=1.0)
bool isNull(void)
グラフィックデータを持っていないか?
void fill(uByte v=(uByte) 0)
全空間を画素値 v にする
void init(void)
グラフィックデータは解放しない
uByte & point(int x, int y, int c)
void setzero(int x, int y, int c)
uByte ft[TGA_FOOTER_SIZE]
void free(void)
グラフィックデータを開放する
bool isNull(void)
グラフィックデータを持っていないか?
void clear(void)
全空間を画素値 0 にする
void getm(int x, int y, int c)
uByte hd[TGA_HEADER_SIZE]
#define JBXL_GRAPH_IVDARG_ERROR
無効な引数
#define JBXL_GRAPH_NODATA_ERROR
データが無い
int writeTGAData(FILE *fp, TGAImage *tga)
TGAImage readTGAFile(const char *fname)
TGAImage MSGraph2TGAImage(MSGraph< T > vp, bool rle)
TGAImage readTGAData(FILE *fp)
int setupTGAData(TGAImage *tga, bool rle)
int writeTGAFile(const char *fname, TGAImage *tga)
MSGraph< T > TGAImage2MSGraph(TGAImage tga)