CxImageJPG

typedef struct tag_ExifInfo {
    char  Version      [5];     //EXIF 信息版本
    char  CameraMake   [32];    //DC 制造商
    char  CameraModel  [40];    //DC 型号
    char  DateTime     [20];    //JPG 文件日期
    int   Height, Width;        //图像高度、宽度
    int   Orientation;          //拍摄方向,例如相机向左手方向旋转后拍摄的
    int   IsColor;
    int   Process;              //被处理
    int   FlashUsed;            //是否使用闪光灯
    float FocalLength;          //焦距
    float ExposureTime;         //曝光时间(快门速度)
    float ApertureFNumber;      //光圈数
    float Distance;             //拍摄物体距离
    float CCDWidth;             //CCD 大小
    float ExposureBias;         //曝光补偿
    int   Whitebalance;         //白平衡
    int   MeteringMode;         //测光模式
    int   ExposureProgram;      //曝光
    int   ISOequivalent;        //ISO
    int   CompressionLevel;     //压缩
    float FocalplaneXRes;       //焦平面X轴分辨率
    float FocalplaneYRes;       //焦平面Y轴分辨率
    float FocalplaneUnits;      //焦平面分辨率单位
    float Xresolution;          //X 轴分辨率 (水平分辨率dpi)
    float Yresolution;          //Y 轴分辨率 (垂直分辨率dpi)
    float ResolutionUnit;       //分辨率单位
    float Brightness;           //亮度
    char  Comments[MAX_COMMENT];//注释
 
    unsigned char * ThumbnailPointer;  /* Pointer at the thumbnail */
    unsigned ThumbnailSize;     /* Size of thumbnail. */
 
    bool  IsExif;
} EXIFINFO;

  

posted @ 2022-10-15 21:47  leochan007  阅读(9)  评论(0编辑  收藏  举报