我有一个比较不同饰面的应用程序。
我有 2 个并排的图像视图,设置为UIViewContentModeTopLeft
和UIViewContentModeTopRight
。左侧显示图像的左侧,右侧显示图像的右侧,因此您可以无缝比较图像。您可以将任何饰面拖动到任一侧以查看它们。
我的问题是视网膜显示器以双倍尺寸显示图像,因此您只能在每个图像视图中看到顶部象限。如果我使用调整大小功能将图像大小减半,它可以工作,但非视网膜显示器会在图像视图中显示小而完整的图像,而不仅仅是一半。
如果我运行调整大小函数并读回大小,我会得到这个,下面是我的调整大小函数:
2012-12-11 09:48:24.148 srg[20290:c07] 设置图像宽度:700.000000 高度:525.000000 2012-12-11 09:48:24.198 srg[20290:c07] 图像尺寸:{1400, 1050}
+ (UIImage *)resizeImage:(UIImage*)image newSize:(CGSize)newSize {
CGRect newRect = CGRectIntegral(CGRectMake(0, 0, newSize.width, newSize.height));
CGImageRef imageRef = image.CGImage;
UIGraphicsBeginImageContextWithOptions(newSize, NO, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
// Set the quality level to use when rescaling
CGContextSetInterpolationQuality(context, kCGInterpolationHigh);
CGAffineTransform flipVertical = CGAffineTransformMake(1, 0, 0, -1, 0, newSize.height);
CGContextConcatCTM(context, flipVertical);
// Draw into the context; this scales the image
CGContextDrawImage(context, newRect, imageRef);
// Get the resized image from the context and a UIImage
CGImageRef newImageRef = CGBitmapContextCreateImage(context);
UIImage *newImage = [UIImage imageWithCGImage:newImageRef];
CGImageRelease(newImageRef);
UIGraphicsEndImageContext();
return newImage;
}