我有一个问题就是在没有质量损失的情况下旋转UIImage。现在我使用BFKit imageRotatedByDegrees:提供的就绪方法,但我的图像变得分散(模糊)。
示例代码:
UIImage *image = [[UIImage imageNamed:@"car"] imageRotatedByDegrees:(((float)arc4random() / ARC4RANDOM_MAX) * (360))];
代码 imageRotatedByDegrees::
- (UIImage *)imageRotatedByDegrees:(CGFloat)degrees
{
// calculate the size of the rotated view's containing box for our drawing space
UIView *rotatedViewBox = [[UIView alloc] initWithFrame:CGRectMake(0,0,self.size.width, self.size.height)];
CGAffineTransform t = CGAffineTransformMakeRotation(DegreesToRadians(degrees));
rotatedViewBox.transform = t;
CGSize rotatedSize = rotatedViewBox.frame.size;
// Create the bitmap context
UIGraphicsBeginImageContext(rotatedSize);
CGContextRef bitmap = UIGraphicsGetCurrentContext();
// Move the origin to the middle of the image so we will rotate and scale around the center.
CGContextTranslateCTM(bitmap, rotatedSize.width/2, rotatedSize.height/2);
// // Rotate the image context
CGContextRotateCTM(bitmap, DegreesToRadians(degrees));
// Now, draw the rotated/scaled image into the context
CGContextScaleCTM(bitmap, 1.0, -1.0);
CGContextDrawImage(bitmap, CGRectMake(-self.size.width / 2, -self.size.height / 2, self.size.width, self.size.height), [self CGImage]);
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
还有另一种方法可以在没有质量损失的情况下旋转UIImage吗?
答案 0 :(得分:3)
我是BFKit的作者,当我读到你的问题时,我调查了这个问题。 在最新版本(1.6.4)中,我已经解决了这个问题!
现在图像将不再被扩散(模糊)。
答案 1 :(得分:0)
我的目标是旋转MKAnnotationView中的图像。所以我通过旋转不是图像来解决问题,而是整个MKAnnotationView。
帮助我的答案是this。
我在MKMapViewDelegate方法中的代码 mapView:viewForAnnotation::
annotationView.transform = CGAffineTransformMakeRotation((((float)arc4random() / ARC4RANDOM_MAX) * (360)));