iOS 获取 Exif 信息相关
关于获取图片文件的 Exif 信息的 Demo
ExifDemo
iOS 获取 Exif 信息的 Demo
EXIF信息
是可交换图像文件的缩写,是专门为数码相机的照片设定的,可以记录数码照片的属性信息和拍摄数据。EXIF可以附加于JPEG、TIFF、RIFF等文件之中,为其增加有关数码相机拍摄信息的内容和索引图或图像处理软件的版本信息。
EXIF 以下为可能包含的信息:
项目 | 资讯(举例) |
---|---|
制造厂商 | Canon |
相机型号 | Canon EOS-1Ds Mark III |
影像方向 | 正常(upper-left) |
影像解析度 X | 300 |
影像解析度 Y | 300 |
解析度单位 | dpi |
软件 | Adobe Photoshop CS Macintosh |
最后异动时间 | 2005:10:06 12:53:19 |
YCbCrPositioning | 2 |
曝光时间 | 0.00800 (1/125) sec |
光圈值 | F22 |
拍摄模式 | 光圈优先 |
ISO感光值 | 100 |
Exif资讯版本 | 30,32,32,31 |
影像拍摄时间 | 2005:09:25 15:00:18 |
影像存入时间 | 2005:09:25 15:00:18 |
曝光补偿(EV+-) | 0 |
测光模式 | 点测光(Spot) |
闪光灯 | 关闭 |
镜头实体焦长 | 12 mm |
Flashpix版本 | 30,31,30,30 |
影像色域空间 | sRGB |
影像尺寸X | 5616 pixel |
影像尺寸Y | 3744 pixel |
在 iOS 当中, 使用 UIImagePickerController 选择单张图片的方法获取的 image 并非是原始图片, 所以不包含原始的 Exif 信息
UIImagePickerController 解析到的 Exif 信息如下:
1[{TIFF}: {
2 Orientation = 6;
3 ResolutionUnit = 2;
4 XResolution = 72;
5 YResolution = 72;
6}, {Exif}: {
7 ColorSpace = 1;
8 ComponentsConfiguration = (
9 1,
10 2,
11 3,
12 0
13 );
14 ExifVersion = (
15 2,
16 2,
17 1
18 );
19 FlashPixVersion = (
20 1,
21 0
22 );
23 PixelXDimension = 4032;
24 PixelYDimension = 3024;
25 SceneCaptureType = 0;
26}, PixelWidth: 4032, PixelHeight: 3024, {JFIF}: {
27 DensityUnit = 1;
28 JFIFVersion = (
29 1,
30 0,
31 2
32 );
33 XDensity = 72;
34 YDensity = 72;
35}, ProfileName: Display P3, DPIWidth: 72, DPIHeight: 72, ColorModel: RGB, Orientation: 6, Depth: 8]
经过调研发现, 使用 PHImageManager 的 requestImageDataAndOrientation 方法获取到的 imagedata 包含原始的信息
PHImageManager 获取 asset 拿到原始 data 后经过解析可以得到如下信息:
1[{TIFF}: {
2 DateTime = "2021:10:11 11:09:47";
3 HostComputer = "iPhone XS Max";
4 Make = Apple;
5 Model = "iPhone XS Max";
6 Orientation = 6;
7 ResolutionUnit = 2;
8 Software = "15.0.1";
9 TileLength = 512;
10 TileWidth = 512;
11 XResolution = 72;
12 YResolution = 72;
13}, Orientation: 6, PixelWidth: 4032, PixelHeight: 3024, {Exif}: {
14 ApertureValue = "1.69599381283836";
15 BrightnessValue = "6.159757029988956";
16 ColorSpace = 65535;
17 CompositeImage = 2;
18 DateTimeDigitized = "2021:10:11 11:09:47";
19 DateTimeOriginal = "2021:10:11 11:09:47";
20 ExifVersion = (
21 2,
22 3,
23 2
24 );
25 ExposureBiasValue = 0;
26 ExposureMode = 0;
27 ExposureProgram = 2;
28 ExposureTime = "0.00909090909090909";
29 FNumber = "1.8";
30 Flash = 16;
31 FocalLenIn35mmFilm = 26;
32 FocalLength = "4.25";
33 ISOSpeedRatings = (
34 25
35 );
36 LensMake = Apple;
37 LensModel = "iPhone XS Max back dual camera 4.25mm f/1.8";
38 LensSpecification = (
39 "4.25",
40 6,
41 "1.8",
42 "2.4"
43 );
44 MeteringMode = 5;
45 OffsetTime = "+08:00";
46 OffsetTimeDigitized = "+08:00";
47 OffsetTimeOriginal = "+08:00";
48 PixelXDimension = 4032;
49 PixelYDimension = 3024;
50 SceneType = 1;
51 SensingMethod = 2;
52 ShutterSpeedValue = "6.786114009295267";
53 SubjectArea = (
54 2013,
55 1511,
56 2217,
57 1330
58 );
59 SubsecTimeDigitized = 440;
60 SubsecTimeOriginal = 440;
61 WhiteBalance = 0;
62}, {GPS}: {
63 Altitude = "5111.43158627087198";
64 AltitudeRef = 0;
65 DestBearing = "3111.85987089833244";
66 DestBearingRef = T;
67 HPositioningError = 35;
68 ImgDirection = "3111.85987089833244";
69 ImgDirectionRef = T;
70 Latitude = "4111.02616383333334";
71 LatitudeRef = N;
72 Longitude = "111111.41185";
73 LongitudeRef = E;
74 Speed = 0;
75 SpeedRef = K;
76}, PrimaryImage: 1, ProfileName: Display P3, DPIWidth: 72, DPIHeight: 72, ColorModel: RGB, {MakerApple}: {
77 1 = 14;
78 12 = (
79 "0.7695312",
80 "1.242188"
81 );
82 13 = 5;
83 14 = 0;
84 16 = 1;
85 17 = "07250F0C-D055-4E2C-9290-7A002339A7F4";
86 2 = {length = 512, bytes = 0x63006a00 6b006e00 74007f00 9300a800 ... fb007500 4e005100 };
87 20 = 10;
88 23 = 13639680;
89 25 = 2;
90 26 = q900n;
91 3 = {
92 epoch = 0;
93 flags = 1;
94 timescale = 1000000000;
95 value = 190422196502791;
96 };
97 31 = 0;
98 32 = "50778780-F3AB-48F9-8C74-D070CC6A633F";
99 33 = 0;
100 35 = (
101 15,
102 268435608
103 );
104 37 = 394;
105 38 = 3;
106 39 = "47.02333";
107 4 = 1;
108 40 = 1;
109 43 = "06DFDAB5-59F3-47D4-AC2F-04FAFA9118F2";
110 45 = 4898;
111 46 = 1;
112 47 = 162;
113 5 = 184;
114 54 = 5167;
115 55 = 4;
116 59 = 0;
117 6 = 191;
118 60 = 4;
119 65 = 0;
120 7 = 1;
121 74 = 2;
122 8 = (
123 "0.0132227",
124 "-0.3723191",
125 "-0.9368563"
126 );
127}, Depth: 8]
具体到每个字段对应的信息还需要继续查找和调研
详细内容见 Demo
Apple 对于 CGImageProperties 信息的文档
Apple 对于 Exif 信息的文档
Maker Apple 字段的相关信息的猜测