0

我得到了一个UIImage来自UIImagePickerController,并使用该站点的代码来调整图像大小

- (UIImage *)resizedImage:(CGSize)newSize
                transform:(CGAffineTransform)transform
           drawTransposed:(BOOL)transpose
     interpolationQuality:(CGInterpolationQuality)quality {
    CGRect newRect = CGRectIntegral(CGRectMake(0, 0, newSize.width, newSize.height));
    CGRect transposedRect = CGRectMake(0, 0, newRect.size.height, newRect.size.width);
    CGImageRef imageRef = self.CGImage;

    // Build a context that's the same dimensions as the new size
    CGContextRef bitmap = CGBitmapContextCreate(NULL,
                                                newRect.size.width,
                                                newRect.size.height,
                                                CGImageGetBitsPerComponent(imageRef),
                                                0,
                                                CGImageGetColorSpace(imageRef),
                                                CGImageGetBitmapInfo(imageRef));

    // Rotate and/or flip the image if required by its orientation
    CGContextConcatCTM(bitmap, transform);

    // Set the quality level to use when rescaling
    CGContextSetInterpolationQuality(bitmap, quality);

    // Draw into the context; this scales the image
    CGContextDrawImage(bitmap, transpose ? transposedRect : newRect, imageRef);

    // Get the resized image from the context and a UIImage
    CGImageRef newImageRef = CGBitmapContextCreateImage(bitmap);
    UIImage *newImage = [UIImage imageWithCGImage:newImageRef];

    // Clean up
    CGContextRelease(bitmap);
    CGImageRelease(newImageRef);

    return newImage;
}

UIImagePNGRepresentation()无法返回NSData重新调整大小的图像,但UIImageJPEGRepresentation()成功。

我们如何知道 aUIImage是否以 PNG 或 JPEG 格式呈现?上述代码中遗漏了什么使调整大小的图像无法用 PNG 表示?

根据苹果文档:“如果图像没有数据或底层 CGImageRef 包含不受支持的位图格式的数据,此函数可能会返回 nil。”

PNG 演示文稿支持哪些位图格式?如何制作 UIImage PNG 支持的格式?

4

2 回答 2

0

这是一个错误,在代码的另一部分中,图像被以下重新缩放

CGContextRef context = CGBitmapContextCreate(NULL,
                                         size.width,
                                         size.height,
                                         8,
                                         0,
                                         CGImageGetColorSpace(source),
                                         kCGImageAlphaNoneSkipFirst);

将 kCGImageAlphaNoneSkipFirst 更改为 CGImageGetBitmapInfo(source) 解决了问题

于 2013-06-27T01:32:09.077 回答
-1

转到以下链接...

如何检查下载的PNG图像是否损坏?

它可以帮助你...

让我知道它是否有效...

快乐编码!!!!

于 2013-06-26T09:56:53.523 回答