我做了这个 UIImage 扩展以获得重新缩放的副本:
-(UIImage*)scaleByRatio:(float) scaleRatio
{
CGSize scaledSize = CGSizeMake(self.size.width * scaleRatio, self.size.height * scaleRatio);
//The output context.
UIGraphicsBeginImageContext(scaledSize);
CGContextRef context = UIGraphicsGetCurrentContext();
//Percent (101%)
#define SCALE_OVER_A_BIT 1.01
//Scale.
CGContextScaleCTM(context, scaleRatio * SCALE_OVER_A_BIT, scaleRatio * SCALE_OVER_A_BIT);
[self drawAtPoint:CGPointZero];
//End?
UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return scaledImage;
}
它在大多数情况下都有效,但在我最近的项目中,它输出原始图像(我在使用UIImageJPEGRepresentation和imageWithData:缩放后立即保存到磁盘)。
我在后台线程中调用该方法。这可能是问题吗?如何将其重写为线程安全的(假设问题是由线程引起的)。