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:
- 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
本文介绍了一些实用的iPhone图像处理技巧,包括如何将两张UIImage合并为一张、如何从一张UIImage中截取一部分创建新的UIImage,以及如何将UIImage保存到照片相册,并提供了相应的Objective-C代码示例。
3万+

被折叠的 条评论
为什么被折叠?



