我要为iphone / ipad创建一个应用程序,我想知道哪些类或方法用于照片编辑,如模糊图像更改背景更改效果等...
@interface YouProjectName_ViewController : UIViewController {
}
答案 0 :(得分:3)
也许GPUImage Framework可以帮助操纵图像。
GPUImage框架... iOS库,可让您将GPU加速滤镜和其他效果应用于图像,实时相机视频和电影。与Core Image(iOS 5.0的一部分)相比,GPUImage允许您编写自己的自定义过滤器,支持部署到iOS 4.0,并且具有更简单的界面。
答案 1 :(得分:1)
-(UIImage*)processImageRect:(UIImage*)image:(CGSize)size:(CGSize)originalSize {
// Draw image1
UIGraphicsBeginImageContext(originalSize);
[image drawInRect:CGRectMake(0.0, 0.0, size.width, size.height)];
UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
return resultingImage;
}
此功能对您的应用程序有所帮助。