1

次のコードを使用して画像をキャプチャします。

[self.stillImageOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler:^(CMSampleBufferRef imageSampleBuffer, NSError *error) {
     CFDictionaryRef exifAttachments = CMGetAttachment(imageSampleBuffer, kCGImagePropertyExifDictionary, NULL);
     NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
     UIImage *image = [[UIImage alloc] initWithData:imageData];
     NSDictionary *metadata = (__bridge NSDictionary*)exifAttachments;
     NSLog(@"%@",metadata");
}];

ログ出力は次のとおりです。

ApertureValue = "2.526068811667588";
BrightnessValue = "-0.5270684580355165";
ExposureMode = 0;
ExposureProgram = 2;
ExposureTime = "0.06666666666666667";
FNumber = "2.4";
Flash = 16;
FocalLenIn35mmFilm = 35;
FocalLength = "4.28";
ISOSpeedRatings =     (
    500
);
MeteringMode = 5;
PixelXDimension = 3264;
PixelYDimension = 2448;
SceneType = 1;
SensingMethod = 2;
ShutterSpeedValue = "3.906905022631062";
SubjectArea =     (
    1631,
    1223,
    881,
    881
);
WhiteBalance = 0;

時間関連のメタデータを取得できないのはなぜですか? いつ撮影されたのか知りたいです。

4

1 に答える 1

0

カメラロールに追加された後、日付と時刻がメタデータに追加されると判断しました(開発者側の作業はありません)。情報が不足している心配はありません!

于 2012-08-25T02:25:04.570 に答える