我有一个比较不同饰面的应用程序。
我有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;
}
答案 0 :(得分:0)
尝试拍摄图像并创建正常尺寸图像的两倍并在项目中使用名称"image"@2x.png
进行设置,xcode会自动将@ 2x图像用于视网膜显示设备和常规{{ 1}}用于非视网膜设备。或者,如果视网膜设备使您的图像变大,那么将图像缩小一半并将其设置为@ 2x,这应该可以解决问题。希望有所帮助。