0

I'm wondering if it's possible to save a non-JPEG file (e.g. PNG) to the iPhone Photos album. I'm trying to do this in order to save a lossless image. Currently, I'm saving to the application bundle's document folder, but I'd like to be able to save to the iPhone Photos album so the images may be viewed later (without explicitly copying them out of the bundle). The function UIImageWriteToSavedPhotosAlbum will not work because it writes a JPEG file.

Thanks

David
  • 2,027
  • 3
  • 19
  • 21

1 Answers1

0

Apparently, you can use a workaround, I've found it right here on SO.

Community
  • 1
  • 1
luvieere
  • 37,065
  • 18
  • 127
  • 179
  • This post discusses the method I'm using currently, that is, saving directly to the application bundle rather than the user's Photo album. Though the author does comment that my desired task is not possible, so I guess that's my answer. – David Oct 01 '09 at 14:20