I want to picker some pictures from the library, and convert them to a gif. Is there any code examples? Or provide some ideas? Thanks a lot!
|
|
Check these Links According to Apple,
Better prefer to use PNG's for your image requirements For Picking Image : http://iphone.zcentric.com/2008/08/28/using-a-uiimagepickercontroller/ For Conversion : http://blog.objectgraph.com/index.php/2010/04/05/download-an-image-and-save-it-as-png-or-jpeg-in-iphone-sdk/ Hope this Helps |
||||
|
|
|
There's ImageMagick for iPhone.Check Using ImageMagick to create animated GIFs on the iPhone. Or search "ImageMagick for iphone" at Google |
|||
|
|
|
You can create a GIF using the ImageIO framework, which is part of the iOS SDK. You don't need ImageMagick or any other third-party library. Look at this answer for code that uses ImageIO to create an animated GIF. If you don't want an animated GIF, just add a single image instead of a bunch of images. As for picking images from the library, there are many questions about this already on stackoverflow. Just search for |
|||
|
|