Suche…


Parameter

CGInterpolationQuality Interpolationsstufen für das Rendern eines Bildes.
Die Interpolationsqualität ist ein Grafikzustandsparameter typedef enum CGInterpolationQuality CGInterpolationQuality;

Ändern Sie die Größe eines Bildes nach Größe und Qualität

- (UIImage *)drawImageBySize:(CGSize)size quality:(CGInterpolationQuality)quality
{
    UIGraphicsBeginImageContextWithOptions(size, NO, 0.0);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetInterpolationQuality(context, quality);
    [self drawInRect: CGRectMake (0, 0, size.width, size.height)];
    UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return resizedImage;
}


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow