由于某些原因,我需要将图像从 UIImage 转换为 CIImage(用于处理)并再次转换回 UIImage。我是通过UIImage-CGImage-CIImage-UIImage来做的。忽略不相关的代码,代码在后面显示。
UIImage *originalPic = [[UIImage alloc]init];//get this from UIImagePickerController
CIImage *originalCIPic = [[CIImage alloc]init];
originalCIPic = [CIImage imageWithCGImageriginalPic.CGImage];
UIImage *finalResultUIImage = [UIImage imageWithCIImageriginalCIPic];
//then I put the image on an Image View(contentMode has been set)
self.viewOfImage.contentMode = UIViewContentModeScaleAspectFit;
self.viewOfImage.image=finalResultUIImage;
//I used NSLog to check the size, but they are the same.(before transforming and after)
NSLog(@"this is the final UIImage,size is %@ ",NSStringFromCGSize(finalResultUIImage.size));
但是屏幕上显示的图像被拉伸(stretch)了。
我怎么了?或者我还有其他选择吗?
非常感谢您,很抱歉我没有足够的声誉来发布图片。
试试这个:
NSString *filePath = [[NSBundle mainBundle] pathForResource"abcd" ofType"png"];
CIImage *ciImage = [CIImage imageWithContentsOfURL:[NSURL fileURLWithPath:filePath]];
UIImage *imageByCIImage = [UIImage imageWithCIImage:ciImage scale:1.0f orientation:UIImageOrientationUp];
UIGraphicsBeginImageContext(imageByCIImage.size);
[imageByCIImage drawInRect:CGRectMake(0,0,imageByCIImage.size.width,imageByCIImage.size.height)];
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
self.imageview.image = newImage;
UIGraphicsEndImageContext();
关于ios - 为什么要拉伸(stretch)图像(UIImage to CIImage to UIImage),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29057398/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |