JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
TiffTool.cpp File Reference

TIFF TOOL. More...

#include "TiffTool.h"
Include dependency graph for TiffTool.cpp:

Go to the source code of this file.

Functions

TIFF_ifd ** read_tiff_file (const char *fname)
 
TIFF_ifdget_tiff_ifd (unsigned char *buf, int num)
 
void proc_tiff_ifd (TIFF_ifd *ptr, unsigned char *buf)
 
void print_tiff_ifd (FILE *fp, TIFF_ifd *ifd, int max_values)
 
void print_tiff_ifd_indiv (FILE *fp, TIFF_ifd *ifd, int max_values)
 
void free_TIFF_ifd (TIFF_ifd *ifd)
 
void free_TIFF_ifd_dem (TIFF_ifd **ptr_ifd)
 
char * get_tiff_ascii_field (TIFF_ifd *ifd, int offset)
 
unsigned int get_tiff_uint_field (TIFF_ifd *ifd, int offset)
 
double get_tiff_double_field (TIFF_ifd *ifd, int offset)
 
int get_tiff_type_length (short type)
 
TIFF_ifdfind_tiff_ifd (TIFF_ifd *ifd, unsigned short tag)
 

Variables

int TIFF_Swap_Flag = FALSE
 

Detailed Description

Version
0.9
Date
2010/11/9
Author
Fumi.Iseki (C)
Attention
C から C++へ.まだ書き換え中!! ---> 永遠に書き換え中!
必要になったら完成させる.

Definition in file TiffTool.cpp.

Function Documentation

◆ find_tiff_ifd()

TIFF_ifd * find_tiff_ifd ( TIFF_ifd * ifd,
unsigned short tag )

Definition at line 485 of file TiffTool.cpp.

486{
487 if (ifd==NULL && tag<=0) return NULL;
488
489 int i;
490 int count = ifd->count;
491
492 if (ifd->tag!=0) {
493 if (ifd->tag==tag) return ifd;
494 else return NULL;
495 }
496
497 ifd++;
498 for (i=0; i<count; i++) {
499 if (ifd->tag==tag) return ifd;
500 ifd++;
501 }
502 return NULL;
503}
uWord tag
Definition TiffTool.h:24
uDWord count
Definition TiffTool.h:26

References TIFF_ifd::count, and TIFF_ifd::tag.

◆ free_TIFF_ifd()

void free_TIFF_ifd ( TIFF_ifd * ifd)

Definition at line 378 of file TiffTool.cpp.

379{
380 if (ifd==NULL) return;
381 freeNull(ifd->ex_value);
382 free(ifd);
383}
void freeNull(T &p)
Definition common++.h:37
void * ex_value
Definition TiffTool.h:28

References TIFF_ifd::ex_value.

Referenced by free_TIFF_ifd_dem().

Here is the caller graph for this function:

◆ free_TIFF_ifd_dem()

void free_TIFF_ifd_dem ( TIFF_ifd ** ptr_ifd)

Definition at line 386 of file TiffTool.cpp.

387{
388 if (ptr_ifd==NULL) return;
389
390 TIFF_ifd** ptr = ptr_ifd;
391 while ((*ptr)!=NULL) {
392 if ((*ptr)->tag==0) {
393 if ((*ptr)->ex_value!=NULL) {
394 free_MSGraph((MSGraph*)(*ptr)->ex_value);
395 }
396 }
397
398 free_TIFF_ifd(*ptr);
399 ptr++;
400 }
401
402 free(ptr_ifd);
403}
void free_TIFF_ifd(TIFF_ifd *ifd)
Definition TiffTool.cpp:378

References free_TIFF_ifd().

Here is the call graph for this function:

◆ get_tiff_ascii_field()

char * get_tiff_ascii_field ( TIFF_ifd * ifd,
int offset )

Definition at line 406 of file TiffTool.cpp.

407{
408 if (ifd==NULL) return NULL;
409 if (ifd->type!=TIFF_TYPE_ASCII) return NULL;
410 if (offset<0) offset = 0;
411
412 int len = get_tiff_type_length(ifd->type);
413 unsigned char* ptr = NULL;
414
415 if (len*ifd->count>4 && ifd->ex_value!=NULL) ptr = (unsigned char*)(ifd->ex_value);
416 else ptr = (unsigned char*)&(ifd->value);
417
418 return (char*)(ptr + offset);
419}
int get_tiff_type_length(short type)
Definition TiffTool.cpp:476
#define TIFF_TYPE_ASCII
Definition TiffTool.h:45
uDWord value
Definition TiffTool.h:27
sWord type
Definition TiffTool.h:25

References TIFF_ifd::count, TIFF_ifd::ex_value, get_tiff_type_length(), TIFF_TYPE_ASCII, TIFF_ifd::type, and TIFF_ifd::value.

Referenced by print_tiff_ifd_indiv().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_tiff_double_field()

double get_tiff_double_field ( TIFF_ifd * ifd,
int offset )

Definition at line 452 of file TiffTool.cpp.

453{
454 if (ifd==NULL) return 0.0;
455 if (ifd->type!=TIFF_TYPE_FLOAT && ifd->type!=TIFF_TYPE_DOUBLE) return 0.0;
456 if (offset<0) offset = 0;
457
458 double ret = 0.0;
459 int len = get_tiff_type_length(ifd->type);
460 unsigned char* ptr = NULL;
461
462 if (len*ifd->count>4 && ifd->ex_value!=NULL) ptr = (unsigned char*)(ifd->ex_value);
463 else ptr = (unsigned char*)&(ifd->value);
464
465 if (len==4) {
466 ret = *(float*)(ptr + offset*4);
467 }
468 else if (len==8) {
469 ret = *(double*)(ptr + offset*8);
470 }
471
472 return ret;
473}
#define TIFF_TYPE_DOUBLE
Definition TiffTool.h:55
#define TIFF_TYPE_FLOAT
Definition TiffTool.h:54

References TIFF_ifd::count, TIFF_ifd::ex_value, get_tiff_type_length(), TIFF_TYPE_DOUBLE, TIFF_TYPE_FLOAT, TIFF_ifd::type, and TIFF_ifd::value.

Referenced by print_tiff_ifd_indiv().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_tiff_ifd()

TIFF_ifd * get_tiff_ifd ( unsigned char * buf,
int num )

TIFF_ifd* get_tiff_ifd(unsigned char* buf, int num)

TIFF形式のデータから num番目の IFDデータを取り出す.

Parameters
bufTIFFデータの格納された Buffer型変数
num何番目の IFDデータを取り出すか?
Returns
IFDデータ (ifd)
Return values
ifd->tga==0is header
ifd->typeis seq number of this image (num)
ifd->countis number of IFDs in this image
ifd->valueis next image IFD offset. if this is 0, next image does not exist

Definition at line 82 of file TiffTool.cpp.

83{
84 TIFF_ifd* ifd = NULL;
85 int i, k;
86
87 // Endian
88 if (buf[0]=='I' && buf[1]=='I') {
90 }
91 else if (buf[0]=='M' && buf[1]=='M') {
93 }
94 else {
95 return NULL;
96 }
97
98 unsigned char* ptr = buf + 2;
99 short version = *((short*)ptr);
100 if (TIFF_Swap_Flag) version = swaps(version);
101 if (version!=42) {
102 return NULL;
103 }
104
105 ptr += 2;
106 unsigned int offset = *((unsigned int*)ptr);
107 if (TIFF_Swap_Flag) offset = swapl(offset);
108
109 if (num<0) num = 1;
110 k = 0;
111 while (k!=num && offset!=0) {
112 k++;
113 ptr = buf + offset;
114 short nn = *((short*)ptr);
115 if (TIFF_Swap_Flag) nn = swaps(nn);
116 ptr += 2;
117
118 if (k==num) {
119 ifd = (TIFF_ifd*)malloc(sizeof(TIFF_ifd)*(nn+1));
120 if (ifd==NULL) {
121 return NULL;
122 }
123 memset(ifd, 0, sizeof(TIFF_ifd)*(nn+1));
124 //
125 memset(&ifd[0], 0, 12);
126 ifd[0].type = num;
127 ifd[0].count = nn;
128
129 for (i=1; i<=nn; i++) {
130 if (k==num) {
131 memcpy(&ifd[i], ptr, 12);
132 if (TIFF_Swap_Flag) {
133 ifd[i].tag = swaps(ifd[i].tag);
134 ifd[i].type = swaps(ifd[i].type);
135 ifd[i].count = swapl(ifd[i].count);
136 ifd[i].value = swapl(ifd[i].value);
137 }
138 ifd[i].ex_value = NULL;
139 }
140 ptr += 12;
141 }
142 }
143 else {
144 for (i=0; i<nn; i++) ptr += 12;
145 }
146
147 offset = *((unsigned int*)ptr);
148 if (TIFF_Swap_Flag) offset = swapl(offset);
149 }
150
151 if (ifd!=NULL) ifd[0].value = offset;
152 return ifd;
153}
int TIFF_Swap_Flag
Definition TiffTool.cpp:20
#define TRUE
Definition common.h:226
short swaps(unsigned short p)
16bit の上下8bitを入れ替える.
Definition tools.cpp:1872
int is_big_endian(void)
エンディアンの動的チェック
Definition tools.cpp:114
int is_little_endian(void)
エンディアンの動的チェック
Definition tools.cpp:80
int swapl(unsigned int p)
32bit pを8bitづつ逆順にする
Definition tools.cpp:1896

References TIFF_ifd::count, TIFF_ifd::ex_value, is_big_endian(), is_little_endian(), swapl(), swaps(), TIFF_ifd::tag, TIFF_Swap_Flag, TRUE, TIFF_ifd::type, and TIFF_ifd::value.

Referenced by read_tiff_file().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_tiff_type_length()

int get_tiff_type_length ( short type)

Definition at line 476 of file TiffTool.cpp.

477{
478 int byte_num[] = {0, 1, 1, 2, 4, 8, 1, 1, 2, 4, 8, 4, 8};
479
480 if (type>0 && type<13) return byte_num[type];
481 return 0;
482}

Referenced by get_tiff_ascii_field(), get_tiff_double_field(), get_tiff_uint_field(), and proc_tiff_ifd().

Here is the caller graph for this function:

◆ get_tiff_uint_field()

unsigned int get_tiff_uint_field ( TIFF_ifd * ifd,
int offset )

Definition at line 422 of file TiffTool.cpp.

423{
424 if (ifd==NULL) return 0;
425 if (ifd->type!=TIFF_TYPE_SOHRT && ifd->type!=TIFF_TYPE_SSHORT &&
426 ifd->type!=TIFF_TYPE_LONG && ifd->type!=TIFF_TYPE_SLONG &&
427 ifd->type!=TIFF_TYPE_RATIONAL && ifd->type!=TIFF_TYPE_SRATIONAL) return 0;
428 if (offset<0) offset = 0;
429
430 unsigned int ret = 0;
431 int len = get_tiff_type_length(ifd->type);
432 unsigned char* ptr = NULL;
433
434 if (len*ifd->count>4 && ifd->ex_value!=NULL) ptr = (unsigned char*)(ifd->ex_value);
435 else ptr = (unsigned char*)&(ifd->value);
436
437 if (ifd->type==TIFF_TYPE_RATIONAL || ifd->type==TIFF_TYPE_SRATIONAL) len /= 2;
438
439 if (len==2) {
440 if (TIFF_Swap_Flag) ret = swaps(*(unsigned short*)(ptr + offset*2));
441 else ret = *(unsigned short*)(ptr + offset*2);
442 }
443 else if (len==4) {
444 if (TIFF_Swap_Flag) ret = swapl(*(unsigned int*)(ptr + offset*4));
445 else ret = *(unsigned int*)(ptr + offset*4);
446 }
447
448 return ret;
449}
#define TIFF_TYPE_LONG
Definition TiffTool.h:47
#define TIFF_TYPE_RATIONAL
Definition TiffTool.h:48
#define TIFF_TYPE_SRATIONAL
Definition TiffTool.h:53
#define TIFF_TYPE_SOHRT
Definition TiffTool.h:46
#define TIFF_TYPE_SLONG
Definition TiffTool.h:52
#define TIFF_TYPE_SSHORT
Definition TiffTool.h:51

References TIFF_ifd::count, TIFF_ifd::ex_value, get_tiff_type_length(), swapl(), swaps(), TIFF_Swap_Flag, TIFF_TYPE_LONG, TIFF_TYPE_RATIONAL, TIFF_TYPE_SLONG, TIFF_TYPE_SOHRT, TIFF_TYPE_SRATIONAL, TIFF_TYPE_SSHORT, TIFF_ifd::type, and TIFF_ifd::value.

Referenced by print_tiff_ifd_indiv(), and proc_tiff_ifd().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print_tiff_ifd()

void print_tiff_ifd ( FILE * fp,
TIFF_ifd * ifd,
int max_values )

Definition at line 322 of file TiffTool.cpp.

323{
324 int i;
325 if (max_values<0) max_values = 0;
326
327 if (ifd->tag==0) {
328 int num = ifd->count;
329 ifd++;
330 for (i=1; i<=num; i++) {
331 print_tiff_ifd_indiv(fp, ifd, max_values);
332 ifd++;
333 }
334 }
335 else {
336 print_tiff_ifd_indiv(fp, ifd, max_values);
337 }
338
339}
void print_tiff_ifd_indiv(FILE *fp, TIFF_ifd *ifd, int max_values)
Definition TiffTool.cpp:342

References TIFF_ifd::count, print_tiff_ifd_indiv(), and TIFF_ifd::tag.

Here is the call graph for this function:

◆ print_tiff_ifd_indiv()

void print_tiff_ifd_indiv ( FILE * fp,
TIFF_ifd * ifd,
int max_values )

Definition at line 342 of file TiffTool.cpp.

343{
344 int i;
345 if (max_values<0) max_values = 0;
346
347 fprintf(fp, "%5d %2d %d -> ", ifd->tag, ifd->type, ifd->count);
348
349 if (ifd->ex_value!=NULL) {
350 int count = Min((int)ifd->count, max_values);
351
352 if (ifd->type==TIFF_TYPE_ASCII) {
353 fprintf(fp, " %s", get_tiff_ascii_field(ifd, 0));
354 }
355 else if (ifd->type==TIFF_TYPE_SOHRT || ifd->type==TIFF_TYPE_SSHORT) {
356 for (i=0; i<count; i++) fprintf(fp, " %d", get_tiff_uint_field(ifd, i));
357 }
358 else if (ifd->type==TIFF_TYPE_LONG || ifd->type==TIFF_TYPE_SLONG) {
359 for (i=0; i<count; i++) fprintf(fp, " %d", get_tiff_uint_field(ifd, i));
360 }
361 else if (ifd->type==TIFF_TYPE_RATIONAL || ifd->type==TIFF_TYPE_SRATIONAL) {
362 for (i=0; i<count; i++) fprintf(fp, " %d/%d", get_tiff_uint_field(ifd, 2*i), get_tiff_uint_field(ifd, 2*i+1));
363 }
364 else if (ifd->type==TIFF_TYPE_FLOAT || ifd->type==TIFF_TYPE_DOUBLE) {
365 for (i=0; i<count; i++) fprintf(fp, " %f", get_tiff_double_field(ifd, i));
366 }
367 else if (count>0) fprintf(fp, " PRINT_TIFF_IFD_INDIV: not supported IFD type => %d", ifd->type);
368
369 if (ifd->type!=TIFF_TYPE_ASCII && count<(int)ifd->count && count!=0) fprintf(fp, " .......");
370 }
371 else fprintf(fp, " %d", ifd->value);
372
373 fprintf(fp, "\n");
374 fflush(fp);
375}
unsigned int get_tiff_uint_field(TIFF_ifd *ifd, int offset)
Definition TiffTool.cpp:422
char * get_tiff_ascii_field(TIFF_ifd *ifd, int offset)
Definition TiffTool.cpp:406
double get_tiff_double_field(TIFF_ifd *ifd, int offset)
Definition TiffTool.cpp:452
#define Min(x, y)
Definition common.h:250

References TIFF_ifd::count, TIFF_ifd::ex_value, get_tiff_ascii_field(), get_tiff_double_field(), get_tiff_uint_field(), Min, TIFF_ifd::tag, TIFF_TYPE_ASCII, TIFF_TYPE_DOUBLE, TIFF_TYPE_FLOAT, TIFF_TYPE_LONG, TIFF_TYPE_RATIONAL, TIFF_TYPE_SLONG, TIFF_TYPE_SOHRT, TIFF_TYPE_SRATIONAL, TIFF_TYPE_SSHORT, TIFF_ifd::type, and TIFF_ifd::value.

Referenced by print_tiff_ifd().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ proc_tiff_ifd()

void proc_tiff_ifd ( TIFF_ifd * ptr,
unsigned char * buf )

Definition at line 156 of file TiffTool.cpp.

157{
158 int i, j;
159 int cnt = ptr->count;
160 int width=0, height=0, depth=1, bdepth=1, comp=1, color=0;
161 int tilew=0, tileh=0;
162
163 MSGraph vp;
164 TIFF_ifd* ifd = ptr + 1;
165 TIFF_ifd* strip_ifd = NULL;
166
167 memset(&vp, 0, sizeof(MSGraph));
168
169 //
170 for (i=1; i<=cnt; i++) {
171
172 int offsize = get_tiff_type_length(ifd->type)*ifd->count;
173 if (offsize>4) {
174 //PRINT_MESG("Malloc Ex_Value. Tag = %d, Length = %d\n", ifd->tag, offsize);
175 ifd->ex_value = (void*)malloc(offsize);
176 memcpy(ifd->ex_value, buf + ifd->value, offsize);
177 }
178
179 // Tag
180 switch(ifd->tag) {
181
182 case TIFF_TAG_WIDTH:
183 width = get_tiff_uint_field(ifd, 0);
184 break;
185
186 case TIFF_TAG_HEIGHT:
187 height = get_tiff_uint_field(ifd, 0);
188 break;
189
190 case TIFF_TAG_DEPTH:
191 if (ifd->count==1) depth = ifd->value;
192 else if (ifd->count>=2) {
193 for (j=0, depth=0; j<(int)ifd->count; j++) {
194 depth += get_tiff_uint_field(ifd, j);
195 }
196 }
197 bdepth = (depth+7)/8;
198 break;
199
200 case TIFF_TAG_COMP:
201 comp = get_tiff_uint_field(ifd, 0);
202 if (comp!=1) {
203 //PRINT_MESG("PROC_TIFF_IFD: In this version, I can not processes compressed TIFF imgae!!\n");
204 ptr->type = -1;
205 }
206 break;
207
208 case TIFF_TAG_COLOR:
209 color = get_tiff_uint_field(ifd, 0);
210 if (color==3) {
211 //PRINT_MESG("PROC_TIFF_IFD: In this version, I can not processes Color Map!!\n");
212 ptr->type = -1;
213 }
214 break;
215
216
217 // STRIP
218 case TIFF_TAG_STRIP:
219 vp = make_MSGraph(width, height, 1, depth);
220 if (vp.gp!=NULL) {
221 if (ifd->count==1) {
222 memcpy(vp.gp, buf+ifd->value, width*height*bdepth);
223 }
224 else {
225 strip_ifd = ifd;
226 }
227 }
228 else {
229 ptr->type = -2;
230 }
231 break;
232
234 if (ifd->count>1) {
235 unsigned char* img = (unsigned char*)vp.gp;
236 for (j=0; j<(int)ifd->count; j++) {
237 int size = get_tiff_uint_field(ifd, j);
238 int img_ptr = get_tiff_uint_field(strip_ifd, j);
239 memcpy(img, buf+img_ptr, size);
240 img += size;
241 }
242 }
243 break;
244
245 // TILE
247 tilew = get_tiff_uint_field(ifd, 0);
248 break;
249
251 tileh = get_tiff_uint_field(ifd, 0);
252 break;
253
255 if (tilew>0 && tileh>0) {
256 int xnum = (width +tilew-1)/tilew;
257 int ynum = (height+tileh-1)/tileh;
258 if (vp.gp!=NULL) free_MSGraph(&vp);
259
260 vp = make_MSGraph(tilew*xnum, tileh*ynum, 1, depth);
261 if (vp.gp!=NULL) {
262 MSGraph mp = make_MSGraph(tilew, tileh, 1, depth);
263 int size = tilew*tileh*bdepth;
264
265 for (j=0; j<(int)ifd->count; j++) { // Block
266 int img_ptr = get_tiff_uint_field(ifd, j);
267 memcpy(mp.gp, buf+img_ptr, size);
268
269 int k, l, m;
270 int ii = j%xnum;
271 int jj = j/xnum;
272 for (k=0; k<tileh; k++) {
273 int kk = k*tilew;
274 int yy = (jj*tileh + k)*vp.xs;
275 for (l=0; l<tilew; l++) {
276 int ll = (kk + l)*bdepth;
277 int xx = (yy + ii*tilew + l)*bdepth;
278 for (m=0; m<bdepth; m++) {
279 vp.gp[xx+m] = mp.gp[ll+m];
280 }
281 }
282 }
283 }
284 free_MSGraph(&mp);
285 }
286 else {
287 ptr->type = -2;
288 }
289 }
290 break;
291
293 {
294 int block = tilew*tileh*bdepth;
295 for (j=0; j<(int)ifd->count; j++) {
296 int size = get_tiff_uint_field(ifd, j);
297 if (block!=size) {
298 PRINT_MESG("PROC_TIFF_IFD: Not match Tile Size %d != %d\n", block, size);
299 ptr->type = -1;
300 }
301 }
302 }
303 break;
304 }
305
306 ifd++;
307 }
308
309 if (ptr->type<0) {
310 free_MSGraph(&vp);
311 }
312 else {
313 if (vp.gp!=NULL) {
314 ptr->ex_value = (void*)malloc(sizeof(MSGraph));
315 memcpy(ptr->ex_value, &vp, sizeof(MSGraph));
316 }
317 }
318 return;
319}
#define TIFF_TAG_WIDTH
Definition TiffTool.h:57
#define TIFF_TAG_TILE_BYTE
Definition TiffTool.h:77
#define TIFF_TAG_STRIP_CNT
Definition TiffTool.h:64
#define TIFF_TAG_COLOR
Definition TiffTool.h:61
#define TIFF_TAG_STRIP
Definition TiffTool.h:62
#define TIFF_TAG_HEIGHT
Definition TiffTool.h:58
#define TIFF_TAG_COMP
Definition TiffTool.h:60
#define TIFF_TAG_DEPTH
Definition TiffTool.h:59
#define TIFF_TAG_TILE_HEIGHT
Definition TiffTool.h:75
#define TIFF_TAG_TILE_WIDTH
Definition TiffTool.h:74
#define TIFF_TAG_TILE_OFFSET
Definition TiffTool.h:76
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469

References TIFF_ifd::count, TIFF_ifd::ex_value, get_tiff_type_length(), get_tiff_uint_field(), PRINT_MESG, TIFF_ifd::tag, TIFF_TAG_COLOR, TIFF_TAG_COMP, TIFF_TAG_DEPTH, TIFF_TAG_HEIGHT, TIFF_TAG_STRIP, TIFF_TAG_STRIP_CNT, TIFF_TAG_TILE_BYTE, TIFF_TAG_TILE_HEIGHT, TIFF_TAG_TILE_OFFSET, TIFF_TAG_TILE_WIDTH, TIFF_TAG_WIDTH, TIFF_ifd::type, and TIFF_ifd::value.

Referenced by read_tiff_file().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ read_tiff_file()

TIFF_ifd ** read_tiff_file ( const char * fname)

TIFF_ifd** read_tiff_file(const char* fname)

TIFF形式の画像データを読みこむ.

Parameters
fname読み込むファイル名
Returns
TIFFImage データ

Definition at line 31 of file TiffTool.cpp.

32{
33 TIFF_ifd** ptr_ifd = NULL;
34 unsigned long int size;
35 int i;
36
37 ptr_ifd = (TIFF_ifd**)malloc((MAX_IFD_DEM_NUM+1)*sizeof(TIFF_ifd*));
38 if (ptr_ifd==NULL) return NULL;
39 for (i=0; i<MAX_IFD_DEM_NUM+1; i++) ptr_ifd[i] = NULL;
40
41 unsigned char* buf = read_file(fname, &size);
42 if (size<=0 || buf==NULL) {
43 free(ptr_ifd);
44 freeNull(buf);
45 return NULL;
46 }
47
48 int num = 0;
49 do {
50 ptr_ifd[num] = get_tiff_ifd(buf, num+1);
51 if (ptr_ifd[num]==NULL) break;
52 num++;
53 } while(num<MAX_IFD_DEM_NUM && ptr_ifd[num-1]->value!=0);
54
55 //if (num==MAX_IFD_DEM_NUM && ptr_ifd[num-1]->value!=0) {
56 // PRINT_MESG("READ_TIFF_FILE: included image file number is over %d!!\n", MAX_IFD_DEM_NUM);
57 //}
58
59 for (i=0; i<num; i++) {
60 proc_tiff_ifd(ptr_ifd[i], buf);
61 }
62
63 freeNull(buf);
64 return ptr_ifd;
65}
TIFF_ifd * get_tiff_ifd(unsigned char *buf, int num)
Definition TiffTool.cpp:82
void proc_tiff_ifd(TIFF_ifd *ptr, unsigned char *buf)
Definition TiffTool.cpp:156
#define MAX_IFD_DEM_NUM
Definition TiffTool.h:42
unsigned char * read_file(const char *fname, long unsigned int *size)
ファイルからデータを読み込む
Definition tools.cpp:2460

References get_tiff_ifd(), MAX_IFD_DEM_NUM, proc_tiff_ifd(), and read_file().

Here is the call graph for this function:

Variable Documentation

◆ TIFF_Swap_Flag

int TIFF_Swap_Flag = FALSE

Definition at line 20 of file TiffTool.cpp.

Referenced by get_tiff_ifd(), and get_tiff_uint_field().