本文介绍了尺寸为 1600*1200 的缩放图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发基于图像大小的 iphone 应用程序.从照片库中选择两张大小为 1600*1200 的照片并将两者合并为单个图像并保存到同一个库中.再次检查图像大小,它显示 600* 800.如何获取创建的新照片(600*800)的原始大小(1600*1200).
I am developing image size based iphone application. selecting two photos of size 1600*1200 from photo library and merging of both to single image and save to same library. Again if i check the image size it shows 600* 800. How to get original size(1600*1200) of created New photo(600*800).
提前致谢.
推荐答案
解决如下.
UIView *bgView = [[UIView alloc] initwithFrame:CGRectMake(0,0,1600,1200)];
UIGraphicsBeginImageContext(tempView.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage,self,nil,nil);
感谢您对解决问题的所有支持.
Thanks for all your support to solve the issue.
这篇关于尺寸为 1600*1200 的缩放图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!