ImageIO框架標(biāo)簽

CGImageProperties中定義的字典意義

//TIFF信息字典
const CFStringRef kCGImagePropertyTIFFDictionary;
/GIF信息字典
const CFStringRef kCGImagePropertyGIFDictionary;
//JFIF信息字典
const CFStringRef kCGImagePropertyJFIFDictionary;
//EXif信息字典
const CFStringRef kCGImagePropertyExifDictionary;
//PNG信息字典
const CFStringRef kCGImagePropertyPNGDictionary;
//IPTC信息字典
const CFStringRef kCGImagePropertyIPTCDictionary;
//GPS信息字典
const CFStringRef kCGImagePropertyGPSDictionary;
//原始信息字典
const CFStringRef kCGImagePropertyRawDictionary;
//CIFF信息字典
const CFStringRef kCGImagePropertyCIFFDictionary;
//佳能相機(jī)信息字典
const CFStringRef kCGImagePropertyMakerCanonDictionary;
//尼康相機(jī)信息字典
const CFStringRef kCGImagePropertyMakerNikonDictionary;
//柯尼卡相機(jī)信息字典
const CFStringRef kCGImagePropertyMakerMinoltaDictionary;
//富士相機(jī)信息字典
const CFStringRef kCGImagePropertyMakerFujiDictionary;
//奧林巴斯相機(jī)信息字典
const CFStringRef kCGImagePropertyMakerOlympusDictionary;
//賓得相機(jī)信息字典
const CFStringRef kCGImagePropertyMakerPentaxDictionary;
//對應(yīng)Photoshop相片的信息字典
const CFStringRef kCGImageProperty8BIMDictionary;
//NDG信息字典
const CFStringRef kCGImagePropertyDNGDictionary ;
//ExifAux信息字典
const CFStringRef kCGImagePropertyExifAuxDictionary;
//OpenEXR信息字典
const CFStringRef kCGImagePropertyOpenEXRDictionary;
//Apple相機(jī)信息字典
const CFStringRef kCGImagePropertyMakerAppleDictionary ;

CGImageSourceCopyProperties方法返回的字典中還可能會有如下一個特殊的鍵

//對應(yīng)文件大小
const CFStringRef kCGImagePropertyFileSize;

CGImageSourceCopyPropertiesAtIndex方法中可能包含的特殊鍵:

//像素高度
const CFStringRef kCGImagePropertyPixelHeight;
//像素寬度
const CFStringRef kCGImagePropertyPixelWidth;
//DPI高度
const CFStringRef kCGImagePropertyDPIHeight;
//DPI寬度
const CFStringRef kCGImagePropertyDPIWidth;
//顏色位數(shù)
const CFStringRef kCGImagePropertyDepth;
//圖片的顯示方向
/*
對應(yīng)Number值
 *   1  =  左上到右下.  
 *   2  =  右上到左下.  
 *   3  =  右下到左上.
 *   4  =  左下到右上.  
 *   5  =  行列置換 左上到右下.  
 *   6  =  行列置換 右上到左下.  
 *   7  =  行列置換 右下到左上.  
 *   8  =  行列置換 左下到右上.
*/
const CFStringRef kCGImagePropertyOrientation;
//顏色是否支持浮點(diǎn)數(shù)
const CFStringRef kCGImagePropertyIsFloat;
//圖像是否包含像素樣本
const CFStringRef kCGImagePropertyIsIndexed;
//圖像是否包含alpha通道
const CFStringRef kCGImagePropertyHasAlpha;
//圖像的顏色模式
const CFStringRef kCGImagePropertyColorModel;
//嵌入圖片的ICC配置文件名稱
const CFStringRef kCGImagePropertyProfileName;

kCGImagePropertyColorModel鍵可返回的值有如下幾種定義:

//RBG模式
const CFStringRef kCGImagePropertyColorModelRGB;
//Gray模式
const CFStringRef kCGImagePropertyColorModelGray;
//CMYK模式
const CFStringRef kCGImagePropertyColorModelCMYK;
//Lab模式
const CFStringRef kCGImagePropertyColorModelLab;

kCGImagePropertyTIFFDictionary鍵可返回的值定義如下:

//圖片數(shù)據(jù)壓縮方案
const CFStringRef kCGImagePropertyTIFFCompression;
//圖片數(shù)據(jù)的色彩空間
const CFStringRef kCGImagePropertyTIFFPhotometricInterpretation;
//文檔名稱
const CFStringRef kCGImagePropertyTIFFDocumentName;
//圖片描述
const CFStringRef kCGImagePropertyTIFFImageDescription;
//相機(jī)設(shè)備名
const CFStringRef kCGImagePropertyTIFFMake;
//相機(jī)設(shè)備模式
const CFStringRef kCGImagePropertyTIFFModel;
//圖片方向
const CFStringRef kCGImagePropertyTIFFOrientation;
//橫向每個分辨位的像素數(shù)
const CFStringRef kCGImagePropertyTIFFXResolution;
//縱向每個分辨位的像素數(shù)
const CFStringRef kCGImagePropertyTIFFYResolution;
//分辨率單位
const CFStringRef kCGImagePropertyTIFFResolutionUnit;
//創(chuàng)建圖像的軟件名稱和版本
const CFStringRef kCGImagePropertyTIFFSoftware;
//transform函數(shù)
const CFStringRef kCGImagePropertyTIFFTransferFunction;
//日期時間
const CFStringRef kCGImagePropertyTIFFDateTime;
//作者
const CFStringRef kCGImagePropertyTIFFArtist;
//創(chuàng)建圖片的電腦系統(tǒng)
const CFStringRef kCGImagePropertyTIFFHostComputer;
//公司信息
const CFStringRef kCGImagePropertyTIFFCopyright;
//圖片的白點(diǎn)
const CFStringRef kCGImagePropertyTIFFWhitePoint;
//圖像的原色色度
const CFStringRef kCGImagePropertyTIFFPrimaryChromaticities;
//圖片的瓦片寬度
const CFStringRef kCGImagePropertyTIFFTileWidth;
//圖片的瓦片高度
const CFStringRef kCGImagePropertyTIFFTileLength;

kCGImagePropertyJFIFDictionary對應(yīng)的字典中可能包含如下意義的鍵:

//JFIF版本
const CFStringRef kCGImagePropertyJFIFVersion;
//橫向像素密度
const CFStringRef kCGImagePropertyJFIFXDensity;
//縱向像素密度
const CFStringRef kCGImagePropertyJFIFYDensity;
//像素密度單元
const CFStringRef kCGImagePropertyJFIFDensityUnit;
//是否是高質(zhì)量圖像版本
const CFStringRef kCGImagePropertyJFIFIsProgressive;

kCGImagePropertyExifDictionary對應(yīng)的字典中可能包含如下意義的鍵 :

//曝光時間
const CFStringRef kCGImagePropertyExifExposureTime;
//ExifNumber
const CFStringRef kCGImagePropertyExifFNumber;
//曝光程序
const CFStringRef kCGImagePropertyExifExposureProgram;
//每個通道的光譜靈敏度
const CFStringRef kCGImagePropertyExifSpectralSensitivity;
//ISO速度等級
const CFStringRef kCGImagePropertyExifISOSpeedRatings;
//ExifOECF
const CFStringRef kCGImagePropertyExifOECF;
//靈敏類型
const CFStringRef kCGImagePropertyExifSensitivityType;
//輸出靈敏標(biāo)準(zhǔn)
const CFStringRef kCGImagePropertyExifStandardOutputSensitivity;
//推薦曝光指數(shù)
const CFStringRef kCGImagePropertyExifRecommendedExposureIndex;
//ISO速率
const CFStringRef kCGImagePropertyExifISOSpeed;
const CFStringRef kCGImagePropertyExifISOSpeedLatitudeyyy;
const CFStringRef kCGImagePropertyExifISOSpeedLatitudezzz;
//Exif版本
const CFStringRef kCGImagePropertyExifVersion;
//原始日期時間
const CFStringRef kCGImagePropertyExifDateTimeOriginal;
//數(shù)字化日期時間
const CFStringRef kCGImagePropertyExifDateTimeDigitized;
//壓縮配置
const CFStringRef kCGImagePropertyExifComponentsConfiguration;
//壓縮模式像素位
const CFStringRef kCGImagePropertyExifCompressedBitsPerPixel;
//快門速度值
const CFStringRef kCGImagePropertyExifShutterSpeedValue;
//孔徑值
const CFStringRef kCGImagePropertyExifApertureValue;
//亮度值
const CFStringRef kCGImagePropertyExifBrightnessValue;
//曝光偏差值
const CFStringRef kCGImagePropertyExifExposureBiasValue;
//最大光圈值
const CFStringRef kCGImagePropertyExifMaxApertureValue;
//距離
const CFStringRef kCGImagePropertyExifSubjectDistance;
//測光模式
const CFStringRef kCGImagePropertyExifMeteringMode;
//光源
const CFStringRef kCGImagePropertyExifLightSource;
//拍攝時的閃光狀態(tài)
const CFStringRef kCGImagePropertyExifFlash;
//焦距
const CFStringRef kCGImagePropertyExifFocalLength;
//主體區(qū)域
const CFStringRef kCGImagePropertyExifSubjectArea;
//相機(jī)制造商指定的信息
const CFStringRef kCGImagePropertyExifMakerNote;
//用戶信息
const CFStringRef kCGImagePropertyExifUserComment;
//日期和時間標(biāo)記的秒分?jǐn)?shù)
const CFStringRef kCGImagePropertyExifSubsecTime;
//原始時間
const CFStringRef kCGImagePropertyExifSubsecTimeOriginal;
//數(shù)字時間
const CFStringRef kCGImagePropertyExifSubsecTimeDigitized;
//FlashPix版本信息
const CFStringRef kCGImagePropertyExifFlashPixVersion;
//色彩空間
const CFStringRef kCGImagePropertyExifColorSpace;
//X方向像素
const CFStringRef kCGImagePropertyExifPixelXDimension;
//Y方向像素
const CFStringRef kCGImagePropertyExifPixelYDimension;
//與圖像相關(guān)的聲音文件
const CFStringRef kCGImagePropertyExifRelatedSoundFile;
//FlashEnergy
const CFStringRef kCGImagePropertyExifFlashEnergy;
//FrequencyResponse
const CFStringRef kCGImagePropertyExifSpatialFrequencyResponse;
//像素數(shù)目
const CFStringRef kCGImagePropertyExifFocalPlaneXResolution;
const CFStringRef kCGImagePropertyExifFocalPlaneYResolution;
const CFStringRef kCGImagePropertyExifFocalPlaneResolutionUnit;
//圖像主體的位置
const CFStringRef kCGImagePropertyExifSubjectLocation;
//選擇的曝光指數(shù)
const CFStringRef kCGImagePropertyExifExposureIndex;
//傳感器類型
const CFStringRef kCGImagePropertyExifSensingMethod;
//圖像文件源
const CFStringRef kCGImagePropertyExifFileSource;
//場景類型
const CFStringRef kCGImagePropertyExifSceneType;
//CFA模塊
const CFStringRef kCGImagePropertyExifCFAPattern;
//對圖像數(shù)據(jù)進(jìn)行特殊渲染
const CFStringRef kCGImagePropertyExifCustomRendered;
//曝光模式設(shè)置
const CFStringRef kCGImagePropertyExifExposureMode;
//白平衡模式
const CFStringRef kCGImagePropertyExifWhiteBalance;
//數(shù)字變焦比
const CFStringRef kCGImagePropertyExifDigitalZoomRatio;
//35毫米膠片的等效焦距
const CFStringRef kCGImagePropertyExifFocalLenIn35mmFilm;
//場景捕捉類型(標(biāo)準(zhǔn),景觀屈嗤,肖像潘拨,夜晚)
const CFStringRef kCGImagePropertyExifSceneCaptureType;
//圖像增益
const CFStringRef kCGImagePropertyExifGainControl;
//圖像對比度
const CFStringRef kCGImagePropertyExifContrast;
//圖像飽和度
const CFStringRef kCGImagePropertyExifSaturation;
//圖像銳度
const CFStringRef kCGImagePropertyExifSharpness;
//拍攝條件
const CFStringRef kCGImagePropertyExifDeviceSettingDescription;
//主體距離
const CFStringRef kCGImagePropertyExifSubjectDistRange;
//圖像的唯一標(biāo)識
const CFStringRef kCGImagePropertyExifImageUniqueID;
//相機(jī)所有者
const CFStringRef kCGImagePropertyExifCameraOwnerName;
//相機(jī)序列號
const CFStringRef kCGImagePropertyExifBodySerialNumber;
//透鏡規(guī)格信息
const CFStringRef kCGImagePropertyExifLensSpecification;
//透鏡制造商名稱
const CFStringRef kCGImagePropertyExifLensMake;
//透鏡模式
const CFStringRef kCGImagePropertyExifLensModel;
//透鏡序列號
const CFStringRef kCGImagePropertyExifLensSerialNumber;
//伽馬設(shè)置
const CFStringRef kCGImagePropertyExifGamma;

kCGImagePropertyExifAuxDictionary對應(yīng)的字典中可能包含的鍵定義如下:

//鏡頭信息
const CFStringRef kCGImagePropertyExifAuxLensInfo;
//鏡頭模式
const CFStringRef kCGImagePropertyExifAuxLensModel;
//序列號
const CFStringRef kCGImagePropertyExifAuxSerialNumber;
//鏡頭ID
const CFStringRef kCGImagePropertyExifAuxLensID;
//鏡頭序列號
const CFStringRef kCGImagePropertyExifAuxLensSerialNumber;
//圖片編號
const CFStringRef kCGImagePropertyExifAuxImageNumber;
//閃光補(bǔ)償
const CFStringRef kCGImagePropertyExifAuxFlashCompensation;
//所有者名稱
const CFStringRef kCGImagePropertyExifAuxOwnerName;
//固件信息
const CFStringRef kCGImagePropertyExifAuxFirmware;

kCGImagePropertyGIFDictionary對應(yīng)的字典中可能包含的鍵定義如下

//動畫循環(huán)次數(shù)
const CFStringRef kCGImagePropertyGIFLoopCount;
//兩幀之間的延時
const CFStringRef kCGImagePropertyGIFDelayTime;
//顏色Map
const CFStringRef kCGImagePropertyGIFImageColorMap;
const CFStringRef kCGImagePropertyGIFHasGlobalColorMap;
//兩幀之間的延時
const CFStringRef kCGImagePropertyGIFUnclampedDelayTime;

kCGImagePropertyPNGDictionary對應(yīng)的字典中可能包含的鍵定義如下:

//PNG伽馬值
const CFStringRef kCGImagePropertyPNGGamma;
//混合類型
const CFStringRef kCGImagePropertyPNGInterlaceType;
//X方向像素數(shù)
const CFStringRef kCGImagePropertyPNGXPixelsPerMeter;
//Y方向像素數(shù)
const CFStringRef kCGImagePropertyPNGYPixelsPerMeter;
//RGB意圖
const CFStringRef kCGImagePropertyPNGsRGBIntent;
//色度
const CFStringRef kCGImagePropertyPNGChromaticities;
//作者
const CFStringRef kCGImagePropertyPNGAuthor;
//公司
const CFStringRef kCGImagePropertyPNGCopyright;
//創(chuàng)建時間
const CFStringRef kCGImagePropertyPNGCreationTime;
//描述
const CFStringRef kCGImagePropertyPNGDescription;
//最后修改日期時間
const CFStringRef kCGImagePropertyPNGModificationTime;
//軟件
const CFStringRef kCGImagePropertyPNGSoftware;
//標(biāo)題
const CFStringRef kCGImagePropertyPNGTitle;
//動畫循環(huán)次數(shù)
const CFStringRef kCGImagePropertyAPNGLoopCount;
//兩幀之間的延時
const CFStringRef kCGImagePropertyAPNGDelayTime;
const CFStringRef kCGImagePropertyAPNGUnclampedDelayTime;

kCGImagePropertyGPSDictionary對應(yīng)的字典中可能包含的鍵定義如下:

//GPS版本
const CFStringRef kCGImagePropertyGPSVersion;
//緯度是南緯或北緯
const CFStringRef kCGImagePropertyGPSLatitudeRef;
//緯度
const CFStringRef kCGImagePropertyGPSLatitude;
//經(jīng)度是東經(jīng)或西經(jīng)
const CFStringRef kCGImagePropertyGPSLongitudeRef;
//經(jīng)度
const CFStringRef kCGImagePropertyGPSLongitude;
//海拔標(biāo)準(zhǔn)
const CFStringRef kCGImagePropertyGPSAltitudeRef;
//海拔高度
const CFStringRef kCGImagePropertyGPSAltitude;
//時間戳
const CFStringRef kCGImagePropertyGPSTimeStamp;
//測量GPS的衛(wèi)星
const CFStringRef kCGImagePropertyGPSSatellites;
//GPS狀態(tài)
const CFStringRef kCGImagePropertyGPSStatus;
//測量模式
const CFStringRef kCGImagePropertyGPSMeasureMode;
//精度數(shù)據(jù)
const CFStringRef kCGImagePropertyGPSDOP;
//速度標(biāo)準(zhǔn)
const CFStringRef kCGImagePropertyGPSSpeedRef;
//速度
const CFStringRef kCGImagePropertyGPSSpeed;
//運(yùn)動方向參考
const CFStringRef kCGImagePropertyGPSTrackRef;
//運(yùn)動方向
const CFStringRef kCGImagePropertyGPSTrack;
//位置方向參考
const CFStringRef kCGImagePropertyGPSImgDirectionRef;
//位置方向
const CFStringRef kCGImagePropertyGPSImgDirection;
//地圖測量數(shù)據(jù)
const CFStringRef kCGImagePropertyGPSMapDatum;
//地理緯度南緯或北緯
const CFStringRef kCGImagePropertyGPSDestLatitudeRef;
//地理緯度
const CFStringRef kCGImagePropertyGPSDestLatitude;
//地理經(jīng)度 東經(jīng)或西經(jīng)
const CFStringRef kCGImagePropertyGPSDestLongitudeRef;
//地理經(jīng)度
const CFStringRef kCGImagePropertyGPSDestLongitude;
//方位參照
const CFStringRef kCGImagePropertyGPSDestBearingRef;
//地理方位
const CFStringRef kCGImagePropertyGPSDestBearing;
//距離參照
const CFStringRef kCGImagePropertyGPSDestDistanceRef;
//距離
const CFStringRef kCGImagePropertyGPSDestDistance;
//查找地理位置的方法
const CFStringRef kCGImagePropertyGPSProcessingMethod;
//GPS地區(qū)名
const CFStringRef kCGImagePropertyGPSAreaInformation;
//日期時間
const CFStringRef kCGImagePropertyGPSDateStamp;
//校正信息
const CFStringRef kCGImagePropertyGPSDifferental;
//錯誤信息
const CFStringRef kCGImagePropertyGPSHPositioningError;

kCGImagePropertyIPTCDictionary對應(yīng)的字典中可能包含的鍵定義如下:

//對象類型
const CFStringRef kCGImagePropertyIPTCObjectTypeReference;
//對象屬性
const CFStringRef kCGImagePropertyIPTCObjectAttributeReference;
//對象名稱
const CFStringRef kCGImagePropertyIPTCObjectName;
//編輯狀態(tài)
const CFStringRef kCGImagePropertyIPTCEditStatus;
//更新狀態(tài)
const CFStringRef kCGImagePropertyIPTCEditorialUpdate;
//緊急等級
const CFStringRef kCGImagePropertyIPTCUrgency;
//主體
const CFStringRef kCGImagePropertyIPTCSubjectReference;
//類別
const CFStringRef kCGImagePropertyIPTCCategory;
//補(bǔ)充類別
const CFStringRef kCGImagePropertyIPTCSupplementalCategory;
//Fixture標(biāo)識
const CFStringRef kCGImagePropertyIPTCFixtureIdentifier;
//關(guān)鍵字
const CFStringRef kCGImagePropertyIPTCKeywords;
//內(nèi)容定位碼
const CFStringRef kCGImagePropertyIPTCContentLocationCode;
//內(nèi)容位置名稱
const CFStringRef kCGImagePropertyIPTCContentLocationName;
//圖像使用的最早日期
const CFStringRef kCGImagePropertyIPTCReleaseDate;
//圖像使用的最早時間
const CFStringRef kCGImagePropertyIPTCReleaseTime;
//最后一次使用日期
const CFStringRef kCGImagePropertyIPTCExpirationDate;
//最后一次使用時間
const CFStringRef kCGImagePropertyIPTCExpirationTime;
//圖像使用的特別說明
const CFStringRef kCGImagePropertyIPTCSpecialInstructions;
//建議行為
const CFStringRef kCGImagePropertyIPTCActionAdvised;
//服務(wù)參考
const CFStringRef kCGImagePropertyIPTCReferenceService;
//日期參考
const CFStringRef kCGImagePropertyIPTCReferenceDate;
//參考碼
const CFStringRef kCGImagePropertyIPTCReferenceNumber;
//創(chuàng)建日期
const CFStringRef kCGImagePropertyIPTCDateCreated;
//創(chuàng)建時間
const CFStringRef kCGImagePropertyIPTCTimeCreated;
//數(shù)字創(chuàng)建日期
const CFStringRef kCGImagePropertyIPTCDigitalCreationDate;
//數(shù)字創(chuàng)建時間
const CFStringRef kCGImagePropertyIPTCDigitalCreationTime;
//原始程序
const CFStringRef kCGImagePropertyIPTCOriginatingProgram;
//程序版本
const CFStringRef kCGImagePropertyIPTCProgramVersion;
圖像的編輯周期(早晨,晚上或兩者)饶号。
const CFStringRef kCGImagePropertyIPTCObjectCycle;
//不想創(chuàng)建者名稱
const CFStringRef kCGImagePropertyIPTCByline;
//圖像創(chuàng)建標(biāo)題
const CFStringRef kCGImagePropertyIPTCBylineTitle;
//城市信息
const CFStringRef kCGImagePropertyIPTCCity;
//城市內(nèi)位置
const CFStringRef kCGImagePropertyIPTCSubLocation;
//省份
const CFStringRef kCGImagePropertyIPTCProvinceState;
//國家編碼
const CFStringRef kCGImagePropertyIPTCCountryPrimaryLocationCode;
//國家名稱
const CFStringRef kCGImagePropertyIPTCCountryPrimaryLocationName;
//OriginalTransmission參考
const CFStringRef kCGImagePropertyIPTCOriginalTransmissionReference;
//圖像內(nèi)容摘要
const CFStringRef kCGImagePropertyIPTCHeadline;
//提供圖像服務(wù)的名稱
const CFStringRef kCGImagePropertyIPTCCredit;
//圖像源
const CFStringRef kCGImagePropertyIPTCSource;
//公司提示
const CFStringRef kCGImagePropertyIPTCCopyrightNotice;
//聯(lián)系人
const CFStringRef kCGImagePropertyIPTCContact;
//描述
const CFStringRef kCGImagePropertyIPTCCaptionAbstract;
//圖像編輯者
const CFStringRef kCGImagePropertyIPTCWriterEditor;
//圖像類型
const CFStringRef kCGImagePropertyIPTCImageType;
//方向信息
const CFStringRef kCGImagePropertyIPTCImageOrientation;
//語言信息
const CFStringRef kCGImagePropertyIPTCLanguageIdentifier;
//星級
const CFStringRef kCGImagePropertyIPTCStarRating;
//聯(lián)系人詳細(xì)信息
const CFStringRef kCGImagePropertyIPTCCreatorContactInfo;
//圖像使用權(quán)限
const CFStringRef kCGImagePropertyIPTCRightsUsageTerms;
//場景代碼
const CFStringRef kCGImagePropertyIPTCScene;

上面的kCGImagePropertyIPTCCreatorContactInfo對應(yīng)的字典中鍵的定義如下:

//聯(lián)系人城市
const CFStringRef kCGImagePropertyIPTCContactInfoCity;
//聯(lián)系人國家
const CFStringRef kCGImagePropertyIPTCContactInfoCountry;
//聯(lián)系人地址
const CFStringRef kCGImagePropertyIPTCContactInfoAddress;
//郵編
const CFStringRef kCGImagePropertyIPTCContactInfoPostalCode;
//省份
const CFStringRef kCGImagePropertyIPTCContactInfoStateProvince;
//電子郵件
const CFStringRef kCGImagePropertyIPTCContactInfoEmails;
//電話
const CFStringRef kCGImagePropertyIPTCContactInfoPhones;
//網(wǎng)址
const CFStringRef kCGImagePropertyIPTCContactInfoWebURLs;

kCGImageProperty8BIMDictionary對應(yīng)的字典中可能包含的鍵定義如下:

//Photoshop文件的圖層名
const CFStringRef  kCGImageProperty8BIMLayerNames;
//版本
const CFStringRef  kCGImageProperty8BIMVersion;

kCGImagePropertyDNGDictionary對應(yīng)的字典中可能包含的鍵定義如下:

//DNG版本
const CFStringRef  kCGImagePropertyDNGVersion;
//兼容的最老版本
const CFStringRef  kCGImagePropertyDNGBackwardVersion;
//攝像機(jī)模型
const CFStringRef  kCGImagePropertyDNGUniqueCameraModel;
const CFStringRef  kCGImagePropertyDNGLocalizedCameraModel;
//相機(jī)序列碼
const CFStringRef  kCGImagePropertyDNGCameraSerialNumber;
//鏡頭信息
const CFStringRef  kCGImagePropertyDNGLensInfo;
//黑度等級
const CFStringRef  kCGImagePropertyDNGBlackLevel;
//白度等級
const CFStringRef  kCGImagePropertyDNGWhiteLevel;

const CFStringRef  kCGImagePropertyDNGCalibrationIlluminant1;
const CFStringRef  kCGImagePropertyDNGCalibrationIlluminant2;
const CFStringRef  kCGImagePropertyDNGColorMatrix1;
const CFStringRef  kCGImagePropertyDNGColorMatrix2;
const CFStringRef  kCGImagePropertyDNGCameraCalibration1;
const CFStringRef  kCGImagePropertyDNGCameraCalibration2;
const CFStringRef  kCGImagePropertyDNGAsShotNeutral;
const CFStringRef  kCGImagePropertyDNGAsShotWhiteXY;
const CFStringRef  kCGImagePropertyDNGBaselineExposure;
const CFStringRef  kCGImagePropertyDNGBaselineNoise;
const CFStringRef  kCGImagePropertyDNGBaselineSharpness;
const CFStringRef  kCGImagePropertyDNGPrivateData;
const CFStringRef  kCGImagePropertyDNGCameraCalibrationSignature;
const CFStringRef  kCGImagePropertyDNGProfileCalibrationSignature;
const CFStringRef  kCGImagePropertyDNGNoiseProfile;
const CFStringRef  kCGImagePropertyDNGWarpRectilinear;
const CFStringRef  kCGImagePropertyDNGWarpFisheye;
const CFStringRef  kCGImagePropertyDNGFixVignetteRadial;

kCGImagePropertyCIFFDictionary對應(yīng)的字典中可能包含的鍵定義如下:

//相機(jī)信息
const CFStringRef  kCGImagePropertyCIFFDescription;
//固件版本
const CFStringRef  kCGImagePropertyCIFFFirmware;
//所有者名稱
const CFStringRef  kCGImagePropertyCIFFOwnerName;
//圖片名
const CFStringRef  kCGImagePropertyCIFFImageName;
//圖片文件名
const CFStringRef  kCGImagePropertyCIFFImageFileName;
//曝光方式
const CFStringRef  kCGImagePropertyCIFFReleaseMethod;
//曝光時間
const CFStringRef  kCGImagePropertyCIFFReleaseTiming;
//RecordID
const CFStringRef  kCGImagePropertyCIFFRecordID;
//曝光時間
const CFStringRef  kCGImagePropertyCIFFSelfTimingTime;
//相機(jī)序列號
const CFStringRef  kCGImagePropertyCIFFCameraSerialNumber;
//圖片編碼
const CFStringRef  kCGImagePropertyCIFFImageSerialNumber;
//驅(qū)動模式
const CFStringRef  kCGImagePropertyCIFFContinuousDrive);
//焦點(diǎn)模式
const CFStringRef  kCGImagePropertyCIFFFocusMode;
//測量模式
const CFStringRef  kCGImagePropertyCIFFMeteringMode;
//曝光模式
const CFStringRef  kCGImagePropertyCIFFShootingMode;
//透鏡模式
const CFStringRef  kCGImagePropertyCIFFLensModel;
//最長鏡頭長度
const CFStringRef  kCGImagePropertyCIFFLensMaxMM;
//最短鏡頭長度
const CFStringRef  kCGImagePropertyCIFFLensMinMM;
//白平衡等級
const CFStringRef  kCGImagePropertyCIFFWhiteBalanceIndex;
//曝光補(bǔ)償
const CFStringRef  kCGImagePropertyCIFFFlashExposureComp;
//實(shí)測曝光值
const CFStringRef  kCGImagePropertyCIFFMeasuredEV);

引自文章

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末铁追,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子茫船,更是在濱河造成了極大的恐慌琅束,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,509評論 6 504
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件算谈,死亡現(xiàn)場離奇詭異涩禀,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)然眼,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,806評論 3 394
  • 文/潘曉璐 我一進(jìn)店門艾船,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人高每,你說我怎么就攤上這事屿岂。” “怎么了鲸匿?”我有些...
    開封第一講書人閱讀 163,875評論 0 354
  • 文/不壞的土叔 我叫張陵爷怀,是天一觀的道長。 經(jīng)常有香客問我带欢,道長霉撵,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,441評論 1 293
  • 正文 為了忘掉前任洪囤,我火速辦了婚禮,結(jié)果婚禮上撕氧,老公的妹妹穿的比我還像新娘瘤缩。我一直安慰自己,他們只是感情好伦泥,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,488評論 6 392
  • 文/花漫 我一把揭開白布剥啤。 她就那樣靜靜地躺著,像睡著了一般不脯。 火紅的嫁衣襯著肌膚如雪府怯。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,365評論 1 302
  • 那天防楷,我揣著相機(jī)與錄音牺丙,去河邊找鬼。 笑死,一個胖子當(dāng)著我的面吹牛冲簿,可吹牛的內(nèi)容都是我干的粟判。 我是一名探鬼主播,決...
    沈念sama閱讀 40,190評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼峦剔,長吁一口氣:“原來是場噩夢啊……” “哼档礁!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起吝沫,我...
    開封第一講書人閱讀 39,062評論 0 276
  • 序言:老撾萬榮一對情侶失蹤呻澜,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后惨险,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體羹幸,經(jīng)...
    沈念sama閱讀 45,500評論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,706評論 3 335
  • 正文 我和宋清朗相戀三年平道,在試婚紗的時候發(fā)現(xiàn)自己被綠了睹欲。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,834評論 1 347
  • 序言:一個原本活蹦亂跳的男人離奇死亡一屋,死狀恐怖窘疮,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情冀墨,我是刑警寧澤闸衫,帶...
    沈念sama閱讀 35,559評論 5 345
  • 正文 年R本政府宣布,位于F島的核電站诽嘉,受9級特大地震影響蔚出,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜虫腋,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,167評論 3 328
  • 文/蒙蒙 一骄酗、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧悦冀,春花似錦趋翻、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,779評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至历等,卻和暖如春讨惩,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背寒屯。 一陣腳步聲響...
    開封第一講書人閱讀 32,912評論 1 269
  • 我被黑心中介騙來泰國打工荐捻, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 47,958評論 2 370
  • 正文 我出身青樓靴患,卻偏偏與公主長得像仍侥,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子鸳君,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,779評論 2 354

推薦閱讀更多精彩內(nèi)容

  • yii2-admin 下載地址:https://github.com/mdmsoft/yii2-admin/blo...
    uc小天閱讀 623評論 0 0
  • 最近閑時研究了一下ARKit农渊,確實(shí)很強(qiáng)大,會讓你有一種不一樣的編程體驗(yàn)或颊; 由于內(nèi)容比較多砸紊,筆者只能鏈接相關(guān)的作者的...
    MMD_閱讀 3,326評論 1 24
  • 01 一早到公司醉顽,還沒坐穩(wěn),就收到實(shí)習(xí)生小玉發(fā)來的小窗消息平挑,問我上午有沒有時間游添,想請教一下關(guān)于excel表的問題。...
    花蕭閱讀 412評論 2 0