I was trying to save a PNG file to photos albums folder on the iPhone device with a .png extension so that the transparency remains..

My question is: What is the path of photos album UIImageWriteToSavedPhotosAlbum function is using? I am using data write to file method..

Thanks

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can't access assets on the file system directly (assuming this isn't a jailbreak question). In addition to UIImageWriteToSavedPhotosAlbum, the Assets Library Framework provides access to the photo library if you're targeting newer versions of iOS.

link|improve this answer
would using that framework help me save a file in png format to the albums folder in the photo library? – tiw Jan 20 at 17:33
anyways this answers my question thank you – tiw Jan 20 at 17:35
@tiw: check out UIImageWriteToSavedPhotosAlbum — developer.apple.com/library/ios/documentation/uikit/reference/… – Tommy Jan 20 at 17:36
2  
I think so. I don't believe there's a "copy file to asset" function but if you read the png into an NSData you can then use writeImageDataToSavedPhotosAlbum:metadata:completionBlock. – smparkes Jan 20 at 17:37
@smparkes thank you! – tiw Jan 20 at 18:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.