📄 exif_table.h
字号:
//--Look up tables--
#define EXIF_DEC_Orientation_MAX_LEN 11
#define EXIF_DEC_ResolutionUnit_MAX_LEN 12
#define EXIF_DEC_YCbCrPositioning_MAX_LEN 9
#define EXIF_DEC_ExposureProgram_MAX_LEN 18
#define EXIF_DEC_ComponentsConfig_MAX_LEN 6
#define EXIF_DEC_MeteringMode_MAX_LEN 24
#define EXIF_DEC_LightSource_MAX_LEN 17
#define EXIF_DEC_Flash_MAX_LEN 33
#define EXIF_DEC_ColorSpace_MAX_LEN 13
#define EXIF_DEC_ExposureMode_MAX_LEN 16
#define EXIF_DEC_SceneCaptureType_MAX_LEN 12
const char* exif_Orientation_table[]=
{
"0",
"top-left",
"top-right",
"down-right",
"down-left",
"5",
"6",
"7",
"8",
};
const char* exif_ResolutionUnit_table[]=
{
"0",
"1",
"inches",
"centimeters"
};
const char* exif_YCbCrPositioning_table[]=
{
"0",
"centered",
"co-sited"
};
const char* exif_ExposureProgram_table[]=
{
"Not defined",
"Manual",
"Normal program",
"Aperture priority",// (
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -