JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Gio.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_GRAPHIC_IO_H_
2#define __JBXL_CPP_GRAPHIC_IO_H_
3
13#ifdef WIN32
14#pragma warning(disable:4995)
15#endif
16
17
18#include "Gdata.h"
19
20
21//
22namespace jbxl {
23
24
79// for Simple
80//
81//template <typename T> int writeRasFile(const char *fname, MSGraph<T> vp);
82//template <typename T> MSGraph<T> readRasFile(const char *fname);
83
84
86// for SUN Raster & User Define
87CmnHead readUserSetData(FILE* fp, CmnHead* ch, bool cnt=false);
88CmnHead readRasData(FILE* fp);
89int writeRasData(FILE* fp, CmnHead* ch, int obit=8);
90
91
93// for CT画像
94CmnHead readMoonFile(const char* fn, bool no_ntoh=false);
95CmnHead readMoonData(FILE* fp, unsigned int fsz=0, bool no_ntoh=false); // MOON_DATA形式のファイルを読み込む.
96
97int dicomHeader(FILE* fp, int fsize, int* dsize, int* xsize, int* ysize, int* depth, double* rzxy);
98MSGraph<sWord> readDicomFile(const char* fn);
99MSGraph<sWord> readDicomData(FILE* fp, int fsz);
100
101
103// for I/O 統合 多種ファイル対応
104//template <typename T> MSGraph<T> readGraphicFile (const char* fname, CmnHead* chd=NULL, bool cnt=false);
105//template <typename T> MSGraph<T> readGraphicSlices(const char* frmt, int fst, int fnd, CmnHead* chd);
106//template <typename T> int writeGraphicFile(const char *fname, MSGraph<T> vp, int kd=0, int fn=0, int tn=-1, bool cnt=false);
107
108CmnHead readXHead (const char* fn, CmnHead* ch=NULL);
109CmnHead readXHeadFile (const char* fn, CmnHead* ch=NULL, bool cnt=false);
110CmnHead readCmnHeadFile(const char* fn, CmnHead* ch, bool cnt=false);
111
112int writeCmnHeadFile(const char* fn, CmnHead* hd, bool cnt=false);
113int writeCmnHeadData(FILE* fp, CmnHead* hd, bool cnt=false);
114
115
117// C言語との関数対応
118/*
119CmnHead readRasData() read_ras_data() for C
120CmnHead readUserSetData() read_user_data() for C
121int writeRasData() write_ras_data() for C
122int writeRasFile() write_ras_file() for C
123MSGraph<T> readRasFile() read_ras_file() for C
124int dicomHeader() dicom_header() for C
125*/
126
127
129// ファイル名によるI/Oサポート
169template <typename T> MSGraph<T> readGraphicFile(const char* fname, CmnHead* chd=NULL, bool cnt=false)
170{
171 MSGraph<T> vp;
172 CmnHead hd;
173 CVCounter* counter = NULL;
174
175 counter = GetUsableGlobalCounter();
176 if (counter!=NULL) {
177 counter->SetMax(100);
178 counter->MakeChildCounter(80);
179 }
180
181 vp.init();
182
183 hd = readXHeadFile(fname, chd, cnt);
184 if (counter!=NULL) counter->DeleteChildCounter();
185
186 // Error
187 if (hd.kind==HEADER_NONE) {
188 free_CmnHead(&hd);
189 if (hd.xsize<0) vp.state = hd.xsize;
191 return vp;
192 }
193
194 // Unknown Data
195 int chk = hd.kind & 0x00ff;
196 if (chk==UN_KNOWN_DATA) {
197 if (chd!=NULL) *chd = hd;
198 else free_CmnHead(&hd);
200 return vp;
201 }
202
203 if (counter!=NULL) counter->MakeChildCounter(80);
204
205 if (cnt) {
207 if (counter!=NULL) counter->SetTitle("画像データへ変換");
208 }
209
210 if (chd!=NULL) {
211 *chd = hd;
212 chd->grptr = chd->buf = NULL;
213 }
214
215 vp = copyCmnHead2MSGraph<T>(hd, CH2MG_NORMAL, cnt);
216 free_CmnHead(&hd);
217 if (vp.gp==NULL) return vp;
218
219 if (ZeroBase!=0) {
220 vp.base += ZeroBase;
221 for (int i=0; i<vp.xs*vp.ys*vp.zs; i++) vp.gp[i] += (T)ZeroBase;
222 }
223
224 if (counter!=NULL){
225 counter->DeleteChildCounter();
226 counter->PutFill();
227 }
228
229 return vp;
230}
231
232
258template <typename T> MSGraph<T> readGraphicSlices(const char* fmt, int fst, int fnd, CmnHead* chd=NULL, bool cnt=false)
259{
260 int i, k, l, m, chk, kind;
261 int xsize, ysize, zsize, nsize, psize; // zsize: 1枚の画像のZサイズ.
262 // nsize: 出来上がりの 3D画像のZサイズ
263 char* fr_name;
264 CmnHead dhd, hd;
265 MSGraph<T> vp, gd;
266
267 if (chd!=NULL) {
268 DEBUG_MESG("readGraphicSlices: Called with kind = 0x%04x\n", chd->kind);
269 }
270 else {
271 DEBUG_MESG("readGraphicSlices: Called with NULL Header\n");
272 }
273
274 gd.init();
275 vp.init();
276
277 // 1枚目(ヘッダ情報)の読み出し
278 fr_name = numbering_name(fmt, fst);
279 dhd = readXHead(fr_name, chd);
280 freeNull(fr_name);
281
282 chk = dhd.kind & 0x00ff;
283 if (dhd.kind==HEADER_NONE || chk==UN_KNOWN_DATA) {
284 DEBUG_MODE PRINT_MESG("readGraphicSlices: ヘッダ読み込みエラー: kind = %d\n", dhd.kind);
285 free_CmnHead(&dhd);
287 vp.zs = fst;
288 return vp;
289 }
290 kind = dhd.kind;
291 xsize = dhd.xsize;
292 ysize = dhd.ysize;
293 zsize = Max(dhd.zsize, 1);
294 nsize = zsize*(Xabs(fnd - fst) + 1);
295 psize = xsize*ysize*zsize;
296 if (dhd.depth==16) gd.color = GRAPH_COLOR_MONO16;
297 else gd.color = GRAPH_COLOR_MONO;
298
299 // カウンタ
300 CVCounter* counter = NULL;
301 if (nsize>=10 && cnt) {
302 counter = GetUsableGlobalCounter();
303 if (counter!=NULL) {
304 //counter->SetTitle("マルチファイル読み込み中");
305 counter->SetMax(nsize/10);
306 counter->SetPos(1);
307 }
308 }
309
310 // Z軸の歪, ベース,rbound の設定
311 if (dhd.buf!=NULL && (chk==CT_DATA || chk==CT_3DM || chk==DICOM_DATA)) {
312 sWord* rz = (sWord*)dhd.buf;
313 if (rz[9]==RZXY_RATE || checkBit(dhd.kind, HAS_RZXY)) {
314 double rzm = rz[8]/(double)rz[9];
315 if (rzm<5.0 && rzm>0.) gd.RZxy = rzm;
316 }
317
318 if (rz[10]!=0 && checkBit(dhd.kind, HAS_BASE)) {
319 gd.base = (T)rz[10];
320 }
321
322 if (checkBit(dhd.kind, HAS_RBOUND)) {
323 gd.rbound.xmin = rz[6];
324 gd.rbound.xmax = rz[7];
325 gd.rbound.ymin = rz[4];
326 gd.rbound.ymax = rz[5];
327 gd.rbound.zmin = rz[2];
328 gd.rbound.zmax = rz[3];
329 }
330 }
331 free_CmnHead(&dhd);
332
333 dhd.kind = kind;
334 if (chd!=NULL) dhd.kind |= chd->kind & 0xff00; // オプション
335 *chd = getinfo_CmnHead(dhd);
336
337 // データ読み込み(Z軸方向) 1枚目から
338 gd.getm(xsize, ysize, nsize);
339 if (gd.isNull()) return gd;
340
341 l = 0;
342 k = fst;
343 m = Sign(fnd - fst);
344 while(k != fnd+m){
345 fr_name = numbering_name(fmt, k);
346 hd = readCmnHeadFile(fr_name, &dhd, false); // カウンタ無効
347 free(fr_name);
348
349 chk = hd.kind & 0x00ff;
350 if (hd.kind==HEADER_NONE || chk==UN_KNOWN_DATA) {
351 DEBUG_MESG("readGraphicSlices: データ読み込みエラー: n = %d, kind = %d\n", k, hd.kind);
352 free_CmnHead(&hd);
353 if (l==0) { // 1枚目でエラー
354 gd.free();
356 vp.zs = k;
357 return vp;
358 }
359 else { // 途中までは読み込み完了
360 gd.state = l;
361 gd.zs = l*zsize;
362 break;
363 }
364 }
365
366 vp = copyCmnHead2MSGraph<T>(hd, CH2MG_NOPARM, false); // カウンタ無効
367 if (vp.isNull()) {
368 free_CmnHead(&hd);
369 gd.free();
370 vp.free();
372 vp.zs = k;
373 return vp;
374 }
375
376 // gd へコピー
377 for (i=0; i<psize; i++) gd.gp[i + psize*l] = vp.gp[i] + ZeroBase;
378 if (l==0) {
379 gd.min = vp.min;
380 gd.max = vp.max;
381 }
382 else {
383 gd.min = Min(gd.min, vp.min);
384 gd.max = Max(gd.max, vp.max);
385 }
386
387 // 後始末
388 free_CmnHead(&hd);
389 vp.free();
390 k += m;
391 l++;
392
393 // カウンタ
394 if (counter!=NULL && l%10==0) {
395 counter->StepIt();
396 if (counter->isCanceled()) { // キャンセル
397 gd.free();
399 vp.zs = k;
400 return vp;
401 }
402 }
403 }
404 gd.state = l;
405 gd.base += ZeroBase;
406
407 if (!checkBit(kind, HAS_RBOUND)) gd.rbound.set(0, gd.xs-1, 0, gd.ys-1, 0, gd.zs-1);
408 if (chd!=NULL) {
409 if ((chd->kind&0x00ff)==USERSET_DATA) {
411 if (counter!=NULL) counter->SetTitle("Converting Data");
412 *chd = copyMSGraph2CmnHead(gd);
413 }
414 }
415 if (counter!=NULL) {
416 counter->PutFill();
417 //counter->Stop();
418 }
419
420 return gd;
421}
422
423
455template <typename T> int writeGraphicFile(const char *fname, MSGraph<T> vp, int kind=0, int mlt=FALSE, int fnum=0, int tnum=0, bool cnt=false)
456{
457 int ret;
458 CmnHead hd;
459 CTHead* chd;
460
461 if (fnum<0) fnum = 0;
462 else if (fnum>vp.zs-1) fnum = vp.zs - 1;
463 if (tnum<fnum) tnum = fnum;
464 else if (tnum>vp.zs-1) tnum = vp.zs - 1;
465
466 // for JPEG
467 if ((kind&0x00ff)==JPEG_RGB_DATA) {
468 if (vp.color==GRAPH_COLOR_ARGB) kind = (kind&0xff00) + JPEG_ARGB_DATA;
469 else if (vp.color==GRAPH_COLOR_RGBA) kind = (kind&0xff00) + JPEG_RGBA_DATA;
470
471 if (vp.color==GRAPH_COLOR_RGB16) kind = (kind&0xff00) + JPEG16_RGB_DATA;
472 else if (vp.color==GRAPH_COLOR_ARGB16) kind = (kind&0xff00) + JPEG16_ARGB_DATA;
473 else if (vp.color==GRAPH_COLOR_RGBA16) kind = (kind&0xff00) + JPEG16_RGBA_DATA;
474 }
475
476 //
477 hd.xsize = vp.xs;
478 hd.ysize = vp.ys;
479 hd.zsize = tnum - fnum + 1; //vp.zs;
480 hd.depth = sizeof(T)*8;
481 hd.grptr = (uByte*)(vp.gp + vp.xs*vp.ys*fnum);
482 if (kind==0) {
483 hd.kind = CT_3DM;
484 if (hd.zsize==1) hd.kind = CT_DATA;
485 }
486 else hd.kind = kind;
487
488 hd.lsize = hd.zsize*hd.ysize*hd.zsize*2;
489 hd.bsize = sizeof(CTHead);
490 hd.buf = (uByte*)malloc(hd.bsize);
491 if (hd.buf==NULL) return JBXL_GRAPH_OPFILE_ERROR;
492 memset(hd.buf, 0, hd.bsize);
493
494 chd = (CTHead*)hd.buf;
495 chd->xsize = (sWord)vp.xs;
496 chd->ysize = (sWord)vp.ys;
497 chd->ctmin = (sWord)vp.rbound.zmin;
498 chd->ctmax = (sWord)vp.rbound.zmax;
499 chd->cutup = (sWord)vp.rbound.ymin;
500 chd->cutdown = (sWord)vp.rbound.ymax;
501 chd->cutleft = (sWord)vp.rbound.xmin;
502 chd->cutright = (sWord)vp.rbound.xmax;
503 hd.kind |= HAS_RBOUND;
504
505 if (vp.RZxy!=1.0) {
506 chd->anydata[0] = (sWord)(vp.RZxy*RZXY_RATE);
507 chd->anydata[1] = (sWord)RZXY_RATE;
508 hd.kind |= HAS_RZXY;
509 }
510
511 if (vp.base!=0) {
512 chd->anydata[2] = (sWord)vp.base + TempBase;
513 hd.kind |= HAS_BASE;
514 }
515
516 // 通常の保存
517 if (!mlt) {
518 ret = writeCmnHeadFile(fname, &hd, cnt);
519 }
520
521 // マルチスライス
522 else {
523 // カウンタ
524 CVCounter* counter = NULL;
525 if (hd.zsize>=10 && cnt) {
526 counter = GetUsableGlobalCounter();
527 if (counter!=NULL) {
528 counter->SetMax((hd.zsize+1)/10);
529 counter->SetPos(1);
530 }
531 }
532
533 char filename[LNAME];
534 int num = hd.zsize;
535 int cnt = fnum;
536 hd.zsize = 1;
537
538 for (int i=0; i<num; i++) {
539 snprintf(filename, LNAME-2, fname, cnt);
540 hd.grptr = (uByte*)(vp.gp + vp.xs*vp.ys*cnt);
541 ret = writeCmnHeadFile(filename, &hd, false);
542
543 if (counter!=NULL && i%10==0) {
544 counter->StepIt();
545 if (counter->isCanceled()) { // キャンセル
546 if (hd.buf!=NULL) free(hd.buf);
547 return JBXL_GRAPH_CANCEL;
548 }
549 }
550 if (ret<0) break;
551 cnt++;
552 }
553 if (counter!=NULL) counter->PutFill();
554 }
555
556 if (hd.buf!=NULL) free(hd.buf);
557
558 return ret;
559}
560
561
565template <typename T> int writeRasFile(const char *fname, MSGraph<T> vp)
566{
567 if (fname==NULL) return JBXL_GRAPH_IVDARG_ERROR;
568
569 FILE* fp = fopen(fname, "wb");
570 if (fp==NULL) return JBXL_GRAPH_OPFILE_ERROR;
571
573 writeRasData(fp, &hd);
574
575 fclose(fp);
576 return JBXL_NORMAL;
577}
578
579
583template <typename T> MSGraph<T> readRasFile(const char *fname)
584{
585 MSGraph<T> vp;
586 CmnHead hd;
587 FILE* fp;
588
589 vp.init();
590 fp = fopen(fname, "rb");
591 if (fp==NULL) return vp;
592
593 hd = readRasData(fp);
594 fclose(fp);
595
596 vp = copyCmnHead2MSGraph<T>(hd, CH2MG_NORMAL);
597 return vp;
598}
599
600
601} // namespace
602
603
604#endif
グラフィックデータ定義用ヘッダ
#define CH2MG_NORMAL
Definition Gdata.h:624
#define CH2MG_NOPARM
パラメータ処理(Z軸の歪, rboundの処理)をしない.
Definition Gdata.h:625
virtual void StepIt(int n=1)
カウンタのメモリを増やす
Definition ClassBox.h:171
virtual void SetMax(int m)
カウンタの最大値(最終目標)を設定
Definition ClassBox.h:161
virtual void DeleteChildCounter()
子カウンタの削除(有効領域の無効化)
Definition ClassBox.h:179
virtual CVCounter * MakeChildCounter(int n)
子カウンタの作成(有効領域を再定義)
Definition ClassBox.h:178
virtual void PutFill()
取り敢えずの目標(最短目標)までカウンタを進める.
Definition ClassBox.h:164
virtual bool isCanceled()
カウンタがオペレータにより,キャンセルされたか
Definition ClassBox.h:173
virtual void SetTitle(char *tn)
カウンタのタイトルを設定
Definition ClassBox.h:175
virtual void SetPos(int p)
カウンタの現在位置を設定
Definition ClassBox.h:163
T * gp
グラフィックデータへのポインタ.
Definition Gdata.h:81
int color
データのカラータイプ
Definition Gdata.h:89
T base
画措置の底上げの値.
Definition Gdata.h:83
void init(void)
グラフィックデータは解放しない
Definition Gdata.h:167
int zs
zサイズ. 4Byte. 2Dの場合は 1.
Definition Gdata.h:80
T max
画素値の最大値
Definition Gdata.h:87
T min
画素値の最小値
Definition Gdata.h:88
int xs
xサイズ. 4Byte.
Definition Gdata.h:78
int state
エラー制御
Definition Gdata.h:90
double RZxy
Z軸の歪.Z軸の間隔を 1とした XY軸の間隔.(X or Y)/Z.
Definition Gdata.h:92
void free(void)
グラフィックデータを開放する
Definition Gdata.h:378
bool isNull(void)
グラフィックデータを持っていないか?
Definition Gdata.h:194
RBound< int > rbound
画像の境界情報
Definition Gdata.h:91
int ys
yサイズ. 4Byte.
Definition Gdata.h:79
void getm(int x, int y, int z=1, T v=(T) 0)
グラフィックメモリを獲得する
Definition Gdata.h:250
T xmax
x軸境界の最大値.
Definition Vector.h:427
T ymin
y軸境界の最小値.
Definition Vector.h:428
void set(T XMin=(T) 0, T XMax=(T) 0, T YMin=(T) 0, T YMax=(T) 0, T ZMin=(T) 0, T ZMax=(T) 0, T TMin=(T) 0, T TMax=(T) 0)
Definition Vector.h:444
T zmax
z軸境界の最大値.
Definition Vector.h:431
T xmin
x軸境界の最小値.
Definition Vector.h:426
T ymax
y軸境界の最大値.
Definition Vector.h:429
T zmin
z軸境界の最小値.
Definition Vector.h:430
#define LNAME
Definition common.h:153
#define Min(x, y)
Definition common.h:250
#define Sign(x)
Definition common.h:253
#define Max(x, y)
Definition common.h:247
#define Xabs(x)
Definition common.h:257
short sWord
2Byte
Definition common.h:335
#define snprintf
Definition common.h:56
#define FALSE
Definition common.h:223
unsigned char uByte
1Byte
Definition common.h:332
#define checkBit(dat, bit)
Definition common.h:260
#define JPEG16_RGB_DATA
0x0022 // 書き込み用(16bit->32bit変換)
Definition gheader.h:186
#define JPEG_ARGB_DATA
0x0025 // 書き込み用(アルファチャンネルは削除される)
Definition gheader.h:189
#define HEADER_NONE
0x8000 // ヘッダ種別の指定なし
Definition gheader.h:212
#define GRAPH_COLOR_ARGB16
Definition gheader.h:257
#define GRAPH_COLOR_RGBA16
Definition gheader.h:254
#define CT_3DM
0x0012 // 3D CT DATA(マルチスライス)
Definition gheader.h:178
#define GRAPH_COLOR_RGB16
Definition gheader.h:251
#define GRAPH_COLOR_RGBA
Definition gheader.h:283
#define JPEG_RGBA_DATA
0x0026 // 書き込み用(アルファチャンネルは削除される)
Definition gheader.h:190
#define GRAPH_COLOR_ARGB
Definition gheader.h:279
#define USERSET_DATA
0x0005 // ユーザ指定のデータ形式(ヘッダ形式指定の場合,使用する)
Definition gheader.h:174
#define HAS_BASE
0x0400 // 基底(底上げ)値を持つ
Definition gheader.h:206
#define GRAPH_COLOR_MONO
0x0000
Definition gheader.h:242
#define RZXY_RATE
RZxy をファイルのヘッダに埋め込む際の比率(倍率).
Definition gheader.h:215
#define JPEG_RGB_DATA
0x0020 // JPEG RGB
Definition gheader.h:184
#define DICOM_DATA
0x0004 // DICOM Header
Definition gheader.h:173
#define CT_DATA
0x0010 // CT DATA (Moon形式)
Definition gheader.h:177
#define GRAPH_COLOR_MONO16
0x0010
Definition gheader.h:247
#define HAS_RBOUND
0x2000 // with RBound data
Definition gheader.h:209
#define JPEG16_ARGB_DATA
0x0023 // 書き込み用(16bit->32bit変換)
Definition gheader.h:187
#define UN_KNOWN_DATA
0x0000 // 知らないデータ形式(システムにお任せ)
Definition gheader.h:169
#define JPEG16_RGBA_DATA
0x0024 // 書き込み用(16bit->32bit変換)
Definition gheader.h:188
#define HAS_RZXY
0x1000 // with RZxy data
Definition gheader.h:208
#define JBXL_GRAPH_IVDARG_ERROR
無効な引数
Definition jbxl_state.h:178
#define JBXL_GRAPH_OPFILE_ERROR
ファイルのオープンエラー
Definition jbxl_state.h:173
#define JBXL_NORMAL
正常
Definition jbxl_state.h:32
#define JBXL_GRAPH_CANCEL
処理がキャンセルされた
Definition jbxl_state.h:168
#define JBXL_GRAPH_HEADER_ERROR
画像ヘッダーのエラー
Definition jbxl_state.h:169
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー
Definition jbxl_state.h:170
Definition Brep.h:29
CVCounter * GetUsableGlobalCounter()
現在有効なグローバルカウンタを得る.(子カウンタを得るかもしれない)
Definition ClassBox.h:185
MSGraph< sWord > readDicomFile(const char *fn)
Definition Gio.cpp:628
int writeCmnHeadData(FILE *fp, CmnHead *hd, bool cnt=false)
Definition Gio.cpp:1666
MSGraph< T > readGraphicFile(const char *fname, CmnHead *chd=NULL, bool cnt=false)
Definition Gio.h:169
int TempBase
Definition Gdata.cpp:14
MSGraph< sWord > readDicomData(FILE *fp, int fsz)
Definition Gio.cpp:654
void free_CmnHead(CmnHead *hd)
Definition Gdata.cpp:25
int writeRasFile(const char *fname, MSGraph< T > vp)
Definition Gio.h:565
MSGraph< T > readGraphicSlices(const char *fmt, int fst, int fnd, CmnHead *chd=NULL, bool cnt=false)
Definition Gio.h:258
CmnHead readRasData(FILE *fp)
read_ras_data() for C // SUN RASTER形式のファイルを読み込む
Definition Gio.cpp:30
int writeRasData(FILE *fp, CmnHead *ch, int obit=8)
write_ras_data() for C
Definition Gio.cpp:121
CmnHead readMoonData(FILE *fp, unsigned int fsz=0, bool no_ntoh=false)
Definition Gio.cpp:388
CmnHead getinfo_CmnHead(CmnHead hd)
ヘッダ情報のみをコピーする
Definition Gdata.cpp:58
MSGraph< T > readRasFile(const char *fname)
Definition Gio.h:583
CmnHead readUserSetData(FILE *fp, CmnHead *ch, bool cnt=false)
read_user_data() for C // ユーザ指定(ch)のデータ形式でファイルを読み込む
Definition Gio.cpp:235
CmnHead readMoonFile(const char *fn, bool no_ntoh=false)
Definition Gio.cpp:350
CmnHead readCmnHeadFile(const char *fn, CmnHead *ch, bool cnt=false)
拡張read関数.ファイル種別を指定して読み込む.
Definition Gio.cpp:1314
CmnHead readXHeadFile(const char *fn, CmnHead *ch=NULL, bool cnt=false)
拡張read関数.ファイルを自動判別して読み込む.
Definition Gio.cpp:975
void freeNull(T &p)
Definition common++.h:37
int writeCmnHeadFile(const char *fn, CmnHead *hd, bool cnt=false)
Definition Gio.cpp:1576
int dicomHeader(FILE *fp, int fsize, int *dsize, int *xsize, int *ysize, int *depth, double *rzxy)
Definition Gio.cpp:471
CmnHead readXHead(const char *fn, CmnHead *ch=NULL)
ヘッダ部分のみ読み込み
Definition Gio.cpp:708
int writeGraphicFile(const char *fname, MSGraph< T > vp, int kind=0, int mlt=FALSE, int fnum=0, int tnum=0, bool cnt=false)
Definition Gio.h:455
CmnHead copyMSGraph2CmnHead(MSGraph< T > &vp, unsigned int mode=MG2CH_NORMAL, bool cnt=false)
Definition Gdata.h:805
int ZeroBase
Definition Gdata.cpp:13
sWord xsize
Definition gheader.h:65
sWord cutdown
Definition gheader.h:70
sWord ctmax
Definition gheader.h:68
sWord ysize
Definition gheader.h:66
sWord cutright
Definition gheader.h:72
sWord anydata[23]
Definition gheader.h:73
sWord cutup
Definition gheader.h:69
sWord ctmin
Definition gheader.h:67
sWord cutleft
Definition gheader.h:71
unsigned int lsize
Size of Graphics Data (byte unit)
Definition gheader.h:133
uByte * buf
Ture Header buffer
Definition gheader.h:137
int zsize
For 3D Data (or Color)
Definition gheader.h:130
int kind
Kind of Graphics Format.
Definition gheader.h:127
unsigned int bsize
Fllowing buf size or Any Data (byte unit)
Definition gheader.h:132
uByte * grptr
Pointer to Data.
Definition gheader.h:138
int ysize
Height of Graphics.
Definition gheader.h:129
int depth
Color Depth of Graphics (bit unit)
Definition gheader.h:131
int xsize
Width of Graphics.
Definition gheader.h:128
char * numbering_name(const char *fmt, int n)
フォーマット fmtに従って,nを含む文字列を作り出す.要 free()
Definition tools.cpp:2598
#define DEBUG_MESG
デバッグ用出力関数.コンパイル時に削除可能
Definition tools.h:514
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502