Image Processing Tricks

司马羽
2023-12-01

 

Recently there have been some interesting developer news related to working with images on the iPhone.

  • First there is Chris Greening’s open source project simple-iphone-image-processing, that provides a set of common image processing tasks .
  • Today I listened to the Mobile Orchard’s podcast Interview with Paul Cantrell, and the discussion was about UIKit, views, layers, etc. This was the most enlightening information I’ve come across on this topic ever. Highly recommended.

So, I thought I’d contribute a few UIImage routines that I’ve found useful.

Combine two UIImages

To add two UIImages together you need to make use of Graphics Context.

  

Create a UIImage from a part of another UIImage

This requires a round-trip to Core Graphics land:

  

Save UIImage to Photo Album

This is just a one-liner:

  1. UIImageWriteToSavedPhotosAlbum(image, self, @selector(imageSavedToPhotosAlbum: didFinishSavingWithError: contextInfo:), context);  

And to know if the save was successful:

  

 

 

From: http://iphoneincubator.com/blog/windows-views/image-processing-tricks

 

 类似资料:

相关阅读

相关文章

相关问答