UIImage + Resize вылетает без предупреждения памяти - PullRequest
0 голосов
/ 02 февраля 2012

Herer это моя процедура изменения размера ... в строке CGContextDrawImage происходит сбой приложения после 2 или 3 вызовов процедуры.

нет предупреждения памяти или чего-то еще. это просто сбивает

- (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


////////////AFTER THAT IT CRASHS!!!


     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;
    }

кто-то намекнул?

С уважением, Фил

1 Ответ

1 голос
/ 02 февраля 2012

Может быть, вы должны добавить autorelease pool или @autorelease{} для ARC? Я думаю, это помогло бы.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...