这是我正在使用的代码:

    CGRect imageRect = CGRectMake(0, 0, oldImage.size.width, oldImage.size.height);

    CGRect newRect = imageRect;

    UIGraphicsBeginImageContextWithOptions(newRect.size, NO, oldImage.scale);
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextScaleCTM(ctx, 1, -1);
    CGContextTranslateCTM(ctx, 0, -(newRect.size.height));
    CGContextSaveGState(ctx);
    CGContextClipToMask(ctx, newRect, oldImage.CGImage);
    CGContextSetFillColorWithColor(ctx, [UIColor colorWithWhite:0 alpha:0].CGColor);
    CGContextFillRect(ctx, newRect);
    CGContextRestoreGState(ctx);
    CGContextClipToMask(ctx, imageRect, oldImage.CGImage);

    CGContextSetFillColorWithColor(ctx, tintColor.CGColor);

    CGContextFillRect(ctx, imageRect);
    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

我继续在控制台中收到错误消息,我不确定要尝试什么或没有正确完成什么。

最佳答案

上述错误的确切原因:- 由于当前上下文大小为零,因此您将 剪辑 添加到当前上下文中,这实际上并不存在。所以上面的错误经常发生。

所以检查 oldImage 在上面的函数中是否存在。

所以更新的代码看起来像:

    if ( oldImage = [UIImage imageNamed:@"oldImage.png"]) {

        CGRect imageRect = CGRectMake(0, 0, oldImage.size.width, oldImage.size.height);
        CGRect newRect = imageRect;
        UIGraphicsBeginImageContextWithOptions(newRect.size, NO, oldImage.scale);
        CGContextRef ctx = UIGraphicsGetCurrentContext();
        CGContextScaleCTM(ctx, 1, -1);
        CGContextTranslateCTM(ctx, 0, -(newRect.size.height));
        CGContextSaveGState(ctx);
        CGContextClipToMask(ctx, newRect, oldImage.CGImage);
        CGContextSetFillColorWithColor(ctx, [UIColor colorWithWhite:0 alpha:0].CGColor);
        CGContextFillRect(ctx, newRect);
        CGContextRestoreGState(ctx);
        CGContextClipToMask(ctx, imageRect, oldImage.CGImage);
        CGContextSetFillColorWithColor(ctx, tintColor.CGColor);
        CGContextFillRect(ctx, imageRect);
        UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
     }
     else {
     //image do not exist
     // Unable to change into New Image
}

关于ios - 如何修复 CGContextRestoreGState : invalid context 0x0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18901494/

10-12 04:24