JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
TiffTool.h
Go to the documentation of this file.
1#ifndef __JBXLPP_TIFF_TOOL_H_
2#define __JBXLPP_TIFF_TOOL_H_
3
16//
17
18#include "xtools.h"
19#include "gdata.h"
20#include "Gdata.h"
21
22
30
31
32typedef struct {
33 int nn;
35 unsigned char* img;
36} TIFFImage;
37
38
39extern int TIFF_Swap_Flag;
40
41
42#define MAX_IFD_DEM_NUM 20
43
44#define TIFF_TYPE_BYTE 1
45#define TIFF_TYPE_ASCII 2
46#define TIFF_TYPE_SOHRT 3
47#define TIFF_TYPE_LONG 4
48#define TIFF_TYPE_RATIONAL 5
49#define TIFF_TYPE_SBYTE 6
50#define TIFF_TYPE_UNDEFINED 7
51#define TIFF_TYPE_SSHORT 8
52#define TIFF_TYPE_SLONG 9
53#define TIFF_TYPE_SRATIONAL 10
54#define TIFF_TYPE_FLOAT 11
55#define TIFF_TYPE_DOUBLE 12
56
57#define TIFF_TAG_WIDTH 0x0100 // 256
58#define TIFF_TAG_HEIGHT 0x0101 // 257
59#define TIFF_TAG_DEPTH 0x0102 // 258
60#define TIFF_TAG_COMP 0x0103 // 259
61#define TIFF_TAG_COLOR 0x0106 // 262
62#define TIFF_TAG_STRIP 0x0111 // 273
63#define TIFF_TAG_STRIP_RAW 0x0116 // 278
64#define TIFF_TAG_STRIP_CNT 0x0117 // 279
65#define TIFF_TAG_XRES 0x011a // 282
66#define TIFF_TAG_YRES 0x011b // 283
67#define TIFF_TAG_RES_UNIT 0x0128 // 296
68#define TIFF_TAG_COLORMAP 0x0140 // 320
69
70#define TIFF_TAG_PIXEL 0x0115 // 277
71#define TIFF_TAG_PLANAR 0x011c // 284
72#define TIFF_TAG_SOFTWARE 0x0131 // 305
73
74#define TIFF_TAG_TILE_WIDTH 0x0142 // 322
75#define TIFF_TAG_TILE_HEIGHT 0x0143 // 323
76#define TIFF_TAG_TILE_OFFSET 0x0144 // 324
77#define TIFF_TAG_TILE_BYTE 0x0145 // 325
78#define TIFF_TAG_SMPL_FORMAT 0x0153 // 339
79
80#define TIFF_TAG_COPYRIGHT 0x8298 // 33432
81
82// GeoTIFF
83#define TIFF_TAG_GEO_PXL_SCALE 0x830e // 33550
84#define TIFF_TAG_GEO_TIEPOINT 0x8482 // 33922
85#define TIFF_TAG_GEO_TRANS 0x85d8 // 34264
86#define TIFF_TAG_GEO_DIR 0x87af // 34735
87#define TIFF_TAG_GEO_DOUBLE_PM 0x87b0 // 34736
88#define TIFF_TAG_GEO_ASCII_PM 0x87b1 // 34737
89
90
92
93TIFF_ifd** read_tiff_file(const char* fname);
94TIFF_ifd* get_tiff_ifd(unsigned char* buf, int num);
95TIFF_ifd* find_tiff_ifd(TIFF_ifd* ifd, unsigned short tag);
96void proc_tiff_ifd(TIFF_ifd* ifd, unsigned char* buf);
97
98void free_TIFF_ifd(TIFF_ifd* ifd);
99void free_TIFF_ifd_dem(TIFF_ifd** ptr_ifd);
100
101void print_tiff_ifd(FILE* fp, TIFF_ifd* ifd, int max_values);
102void print_tiff_ifd_indiv(FILE* fp, TIFF_ifd* ifd, int max_values);
103
104char* get_tiff_ascii_field(TIFF_ifd* ifd, int offset);
105unsigned int get_tiff_uint_field(TIFF_ifd* ifd, int offset);
106double get_tiff_double_field(TIFF_ifd* ifd, int offset);
107
108int get_tiff_type_length(short type);
109
110
111#endif
112
グラフィックデータ定義用ヘッダ
void proc_tiff_ifd(TIFF_ifd *ifd, unsigned char *buf)
Definition TiffTool.cpp:156
TIFF_ifd ** read_tiff_file(const char *fname)
Definition TiffTool.cpp:31
int TIFF_Swap_Flag
Definition TiffTool.cpp:20
unsigned int get_tiff_uint_field(TIFF_ifd *ifd, int offset)
Definition TiffTool.cpp:422
TIFF_ifd * get_tiff_ifd(unsigned char *buf, int num)
Definition TiffTool.cpp:82
void print_tiff_ifd_indiv(FILE *fp, TIFF_ifd *ifd, int max_values)
Definition TiffTool.cpp:342
void free_TIFF_ifd_dem(TIFF_ifd **ptr_ifd)
Definition TiffTool.cpp:386
char * get_tiff_ascii_field(TIFF_ifd *ifd, int offset)
Definition TiffTool.cpp:406
void free_TIFF_ifd(TIFF_ifd *ifd)
Definition TiffTool.cpp:378
void print_tiff_ifd(FILE *fp, TIFF_ifd *ifd, int max_values)
Definition TiffTool.cpp:322
int get_tiff_type_length(short type)
Definition TiffTool.cpp:476
double get_tiff_double_field(TIFF_ifd *ifd, int offset)
Definition TiffTool.cpp:452
TIFF_ifd * find_tiff_ifd(TIFF_ifd *ifd, unsigned short tag)
Definition TiffTool.cpp:485
unsigned short uWord
2Byte
Definition common.h:334
unsigned int uDWord
4Byte
Definition common.h:336
short sWord
2Byte
Definition common.h:335
TIFF_ifd * ifd
Definition TiffTool.h:34
unsigned char * img
Definition TiffTool.h:35
uDWord value
Definition TiffTool.h:27
uWord tag
Definition TiffTool.h:24
sWord type
Definition TiffTool.h:25
uDWord count
Definition TiffTool.h:26
void * ex_value
Definition TiffTool.h:28
汎用拡張ツールヘッダ