JunkBox_Lib++ (for Windows) 1.10.1
|
TIFF TOOL. More...
#include "TiffTool.h"
Go to the source code of this file.
Functions | |
TIFF_ifd ** | read_tiff_file (const char *fname) |
TIFF_ifd * | get_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_ifd * | find_tiff_ifd (TIFF_ifd *ifd, unsigned short tag) |
Variables | |
int | TIFF_Swap_Flag = FALSE |
Definition in file TiffTool.cpp.
Definition at line 485 of file TiffTool.cpp.
References TIFF_ifd::count, and TIFF_ifd::tag.
void free_TIFF_ifd | ( | TIFF_ifd * | ifd | ) |
Definition at line 378 of file TiffTool.cpp.
References TIFF_ifd::ex_value.
Referenced by free_TIFF_ifd_dem().
void free_TIFF_ifd_dem | ( | TIFF_ifd ** | ptr_ifd | ) |
Definition at line 386 of file TiffTool.cpp.
References free_TIFF_ifd().
char * get_tiff_ascii_field | ( | TIFF_ifd * | ifd, |
int | offset ) |
Definition at line 406 of file TiffTool.cpp.
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().
double get_tiff_double_field | ( | TIFF_ifd * | ifd, |
int | offset ) |
Definition at line 452 of file TiffTool.cpp.
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().
TIFF_ifd * get_tiff_ifd | ( | unsigned char * | buf, |
int | num ) |
TIFF_ifd* get_tiff_ifd(unsigned char* buf, int num)
TIFF形式のデータから num番目の IFDデータを取り出す.
buf | TIFFデータの格納された Buffer型変数 |
num | 何番目の IFDデータを取り出すか? |
ifd->tga==0 | is header |
ifd->type | is seq number of this image (num) |
ifd->count | is number of IFDs in this image |
ifd->value | is next image IFD offset. if this is 0, next image does not exist |
Definition at line 82 of file TiffTool.cpp.
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().
int get_tiff_type_length | ( | short | type | ) |
Definition at line 476 of file TiffTool.cpp.
Referenced by get_tiff_ascii_field(), get_tiff_double_field(), get_tiff_uint_field(), and proc_tiff_ifd().
unsigned int get_tiff_uint_field | ( | TIFF_ifd * | ifd, |
int | offset ) |
Definition at line 422 of file TiffTool.cpp.
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().
void print_tiff_ifd | ( | FILE * | fp, |
TIFF_ifd * | ifd, | ||
int | max_values ) |
Definition at line 322 of file TiffTool.cpp.
References TIFF_ifd::count, print_tiff_ifd_indiv(), and TIFF_ifd::tag.
void print_tiff_ifd_indiv | ( | FILE * | fp, |
TIFF_ifd * | ifd, | ||
int | max_values ) |
Definition at line 342 of file TiffTool.cpp.
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().
void proc_tiff_ifd | ( | TIFF_ifd * | ptr, |
unsigned char * | buf ) |
Definition at line 156 of file TiffTool.cpp.
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().
TIFF_ifd ** read_tiff_file | ( | const char * | fname | ) |
TIFF_ifd** read_tiff_file(const char* fname)
TIFF形式の画像データを読みこむ.
fname | 読み込むファイル名 |
Definition at line 31 of file TiffTool.cpp.
References get_tiff_ifd(), MAX_IFD_DEM_NUM, proc_tiff_ifd(), and read_file().
int TIFF_Swap_Flag = FALSE |
Definition at line 20 of file TiffTool.cpp.
Referenced by get_tiff_ifd(), and get_tiff_uint_field().