Please see gist here: https://gist.github.com/1387224
Essentially, I'm trying to save a photo from the AVCaptureSession, I'm grabbing the output from an AVCaptureStillImageOutput, converting it into a UIImage and trying to send it to the WriteImageToSavedPhotosAlbum method on ALAssetLibrary.
The reason for doing this is so I can grab the asset url once it's been saved (UIImage.SaveToPhotosAlbum works fine but doesn't let me extract the filename created)
The method is throwing an error
Failed to encode image for saved photos.
Does anyone know how to fix this?
I also looked at passing the raw NSData jpeg stream from the AVCaptureStillImageOutput but can't work out how to get the metadata NSDictionary to pass through.
Many Thanks