Простого использования imageWithCGImage
недостаточно.Он будет масштабироваться, но результат будет размытым и неоптимальным при увеличении или уменьшении.
Если вы хотите получить правильный псевдоним и избавиться от «неровностей», вам нужно что-то вроде этого: http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/.
Мой рабочий тестовый код выглядит примерно так, это решение Тревора с одной небольшой настройкой для работы с моими прозрачными PNG:
- (UIImage *)resizeImage:(UIImage*)image newSize:(CGSize)newSize {
CGRect newRect = CGRectIntegral(CGRectMake(0, 0, newSize.width, newSize.height));
CGImageRef imageRef = image.CGImage;
UIGraphicsBeginImageContextWithOptions(newSize, NO, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
// Set the quality level to use when rescaling
CGContextSetInterpolationQuality(context, kCGInterpolationHigh);
CGAffineTransform flipVertical = CGAffineTransformMake(1, 0, 0, -1, 0, newSize.height);
CGContextConcatCTM(context, flipVertical);
// Draw into the context; this scales the image
CGContextDrawImage(context, newRect, imageRef);
// Get the resized image from the context and a UIImage
CGImageRef newImageRef = CGBitmapContextCreateImage(context);
UIImage *newImage = [UIImage imageWithCGImage:newImageRef];
CGImageRelease(newImageRef);
UIGraphicsEndImageContext();
return newImage;
}