2010-07-05 57 views

回答

1

考慮到您現在提供了來自攝像頭的原始視頻幀以及使用AVFoundation的新AVCaptureDevice等類控制攝像頭屬性的功能,應該不需要在iPhone OS 4.0中使用私有PLCameraController類。

我建議您觀看WWDC 2010 session 409「使用帶AV基座的相機」,其中演示了所有這些。

+0

我需要從攝像頭獲取原始照片數據,因此我可以從中獲取EXIF數據。這在AV基金會中可用嗎?我似乎無法找到答案。 – 2010-07-05 22:51:24

+0

@Boran Milankovic - 查看AVCaptureStillImageOutput上的+ jpegStillImageNSDataRepresentation方法:http://developer.apple.com/iphone/library/documentation/AVFoundation/Reference/AVCaptureStillImageOutput_Class/Reference/Reference.html#//apple_ref/occ/clm/ AVCaptureStillImageOutput/jpegStillImageNSDataRepresentation:它返回包含JPEG圖像及其EXIF元數據的NSData。 – 2010-07-06 00:16:12

相關問題