2

我用手机(640*480)拍了一张照片,然后把它放在里面uiimageview (300*300),用比例填充选项集。我需要将内部显示的相同图像发送uiimageview (300*300, croped, resized)到服务器....

我怎么才能得到它?

4

2 回答 2

3

通过将 UIImageView 层渲染到图形上下文,有一种快速的脏方法可以做到这一点。

UIGraphicsBeginImageContext(self.bounds.size);
[self.imageView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

您需要为此导入<QuartzCore/QuartzCore.h>

另一种方法是自己计算 AspectFill。

 CGSize finalImageSize = CGSizeMake(300,300);
 CGImageRef sourceImageRef = yourImage.CGImage;

CGFloat horizontalRatio = finalImageSize.width / CGImageGetWidth(sourceImageRef);
CGFloat verticalRatio = finalImageSize.height / CGImageGetHeight(sourceImageRef);
CGFloat ratio = MAX(horizontalRatio, verticalRatio); //AspectFill
CGSize aspectFillSize = CGSizeMake(CGImageGetWidth(sourceImageRef) * ratio, CGImageGetHeight(sourceImageRef) * ratio);


CGContextRef context = CGBitmapContextCreate(NULL,
                                             finalImageSize.width,
                                             finalImageSize.height,
                                             CGImageGetBitsPerComponent(sourceImageRef),
                                             0,
                                             CGImageGetColorSpace(sourceImageRef),
                                             CGImageGetBitmapInfo(sourceImageRef));

//Draw our image centered vertically and horizontally in our context.
CGContextDrawImage(context, 
                   CGRectMake((finalImageSize.width-aspectFillSize.width)/2,
                              (finalImageSize.height-aspectFillSize.height)/2,
                              aspectFillSize.width,
                              aspectFillSize.height),
                   sourceImageRef);

//Start cleaning up..
CGImageRelease(sourceImageRef);

CGImageRef finalImageRef = CGBitmapContextCreateImage(context);
UIImage *finalImage = [UIImage imageWithCGImage:finalImageRef];

CGContextRelease(context);
CGImageRelease(finalImageRef);
return finalImage;
于 2012-07-02T12:55:32.697 回答
0

从文档中:

UIViewContentModeScaleToFill

如有必要,通过更改内容的纵横比来缩放内容以适应其自身的大小。

你可以做数学。或者,如果您感觉特别懒惰,可以使用这种hack 方式。

于 2012-07-02T09:48:37.087 回答