裁剪图像后图像模糊?

时间:2013-04-09 14:37:54

标签: iphone ios ipad

我有一个应用程序,我正在裁剪从相机拍摄的图像。一切顺利。但在裁剪后图像似乎模糊和拉伸。

CGRect rect = CGRectMake(20,40,280,200);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();

// translated rectangle for drawing sub image 
CGRect drawRect = CGRectMake(-rect.origin.x, -rect.origin.y,280,200);

// clip to the bounds of the image context
// not strictly necessary as it will get clipped anyway?
CGContextClipToRect(context, CGRectMake(0, 0, rect.size.width, rect.size.height));

// draw image
[image drawInRect:drawRect];

// grab image
UIImage* croppedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
CGSize size = [croppedImage size];
NSLog(@" = %@",NSStringFromCGSize(size));
NSData* pictureData = UIImagePNGRepresentation(croppedImage);

有人能帮助我找出我错在哪里吗?

1 个答案:

答案 0 :(得分:2)

尝试替换

UIGraphicsBeginImageContext(rect.size);

UIGraphicsBeginImageContextWithOptions(rect.size, NO, [[UIScreen mainScreen] scale]);

占视网膜