绘制两个CGMutablePathRef的问题

时间:2013-01-10 03:09:34

标签: iphone ios objective-c ipad

所以我似乎无法绘制2个CGMutablePathRef。这是代码:

CGRect mainRect = CGRectMake(2, 2, rect.size.width-4, 210);
    CGMutablePathRef mainPathRef = createRoundedRectForRect(mainRect, 4);

    if (self.imageExists_){

        [[UIColor colorWithRed:0 green:0 blue:0 alpha:1.0] set];

        CGContextAddPath(context, mainPathRef);
        CGContextClip(context);
        UIGraphicsBeginImageContext(mainRect.size);

        //need to flip the images to that it is drawn appropriately as CALayer uses a different coordinate system
        CGContextSaveGState(context);
        CGContextTranslateCTM(context, 0.0, 210);
        CGContextScaleCTM(context, 1.0, -1.0);
        CGContextDrawImage(context, mainRect, self.highlightItem_.highlightStoryImage.CGImage);

        UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
        [scaledImage drawAtPoint:CGPointMake(0, 0)];
        CGContextRestoreGState(context);

这会在我指定的剪辑路径上绘制图像。但是我想在它下面绘制另一个圆形矩形,所以我做了:

 [[UIColor colorWithRed:0 green:0 blue:0 alpha:1.0] set];

     CGFloat colors [] = {
     0.20, 0.20, 0.20, 1.0,
     0.17, 0.17, 0.17, 1.0
     };

     CGColorSpaceRef baseSpace = CGColorSpaceCreateDeviceRGB();
     CGGradientRef gradient = CGGradientCreateWithColorComponents(baseSpace, colors, NULL, 2);
     CGColorSpaceRelease(baseSpace), baseSpace = NULL;

     CGContextSaveGState(context);

     CGRect commentRect = CGRectMake(2, 215, rect.size.width-4, rect.size.height - 215);
     CGMutablePathRef pathRef = createRoundedRectForRect(commentRect, 3);

     CGContextAddPath(context, pathRef);
     CGContextClip(context);

     CGPoint startPoint = CGPointMake(CGRectGetMidX(commentRect), CGRectGetMinY(commentRect));
     CGPoint endPoint = CGPointMake(CGRectGetMidX(commentRect), CGRectGetMaxY(commentRect));

     CGContextDrawLinearGradient(context, gradient, startPoint, endPoint, 0);
     CGGradientRelease(gradient), gradient = NULL;

     CGContextRestoreGState(context);

     CGContextAddPath(context, pathRef);
     CGContextDrawPath(context, kCGPathStroke);

知道为什么这不起作用?

1 个答案:

答案 0 :(得分:0)

您已将绘图剪切到第一个矩形,但在第二次绘制之前未重置剪切路径。您需要在调用第一个剪切路径之前保存图形状态,我相信。

您的第一个代码段应如下所示:

CGContextSaveGState(...);
CGContextAddPath(...);
CGContextClip(...);
UIGraphicsBeginImageContext(...);
... rest of your drawing code...
CGContextRestoreGState(...);

然后是第二个代码段。