在我的应用程序中,我的图像尺寸为1936*2592,大小最大为 6 MB。我需要将图像缩放到 0.25或将图像调整为 478*640,然后将其上传到服务器。我在ios6中尝试了很多方法,但都失败了
imageData= UIImagePNGRepresentation(self.cl_PriviewImage);
UIImage *temp = [[UIImage alloc] initWithData: imageData];
ScaledImage = [temp resizedImage:CGSizeMake(478, 640) interpolationQuality:kCGInterpolationHigh];
ScaledData = UIImagePNGRepresentation( ScaledImage);
//self.cl_PriviewImage 是我的图像,它显示resizedImage 方法未找到。我也尝试过使用ScaleToSize方法,但它显示相同的错误。
我也试过
ScaledImage = [UIImage imageWithCGImage:self.cl_PriviewImage.CGImage scale:0.25f orientation:self.cl_PriviewImage.imageOrientation];
ScaledData = UIImagePNGRepresentation(ScaledImage);
在这种情况下,没有错误,但我的目的没有实现,即上传的图像在比例/大小上没有改变。
iOS 6中还有其他方法吗?或者我在哪里错了?请给我建议。提前致谢