iphone - iOS 核心图形 : Stroking with semi-transparent patterns leads to colors corruption

标签 iphone ios core-graphics

我的任务是制作类似于删除工具(用手指操作)的东西,它会显示背景图像而不是已删除的图像。

这是我的源图片和目标图片(仅供测试,真实的会有所不同):

image1 http://img232.imageshack.us/img232/6030/29572847.png

这是我的代码。创建模式:

- (void)setFrame:(CGRect)frame {
   [super setFrame:frame];
   if(revealPattern) CGPatternRelease(revealPattern);
   CGPatternCallbacks callbacks = { 0, &patternCallback, NULL};
   revealPattern = CGPatternCreate(self, self.bounds, CGAffineTransformIdentity, self.bounds.size.width, self.bounds.size.height, kCGPatternTilingConstantSpacing, true, &callbacks);   
}

模式回调函数(**info* 包含指向self的指针):

void patternCallback(void *info, CGContextRef context) {
   CGRect rect = ((DrawView *)info).bounds;
   CGImageRef imageRef = ((DrawView *)info).backgroundImage.CGImage;
   CGContextTranslateCTM(context, 0, rect.size.height);
   CGContextScaleCTM(context, 1.0, -1.0);
   CGContextDrawImage(context, rect, imageRef);
}

以及绘制方法:

- (void)drawPoints:(CGContextRef)context{
   if([points count] < 2) return;
   CGPoint lastPoint = [[points objectAtIndex: 0] CGPointValue];
   CGContextBeginPath(context);
   CGContextMoveToPoint(context, lastPoint.x, lastPoint.y);

   CGContextSetBlendMode(context, kCGBlendModeNormal);
   CGColorSpaceRef revealPatternSpace = CGColorSpaceCreatePattern(NULL);        
   CGContextSetStrokeColorSpace(context, revealPatternSpace);
   CGFloat revealAlpha = 1.0;
   CGContextSetStrokePattern(context, revealPattern, &revealAlpha);
   CGContextSetAlpha(context, 0.1);
   CGColorSpaceRelease(revealPatternSpace);

   CGContextSetLineCap(context, kCGLineCapRound);
   CGContextSetLineJoin(context, kCGLineJoinRound);
   CGContextSetLineWidth(context, self.lineWidth);
   for(int i = 1; i < [points count]; i++){
       CGPoint currPoint = [[points objectAtIndex: i] CGPointValue];
       CGContextAddLineToPoint(context, currPoint.x, currPoint.y);
       lastPoint = currPoint;
   }
   CGContextStrokePath(context);
}

如果局部变量 revealAlpha 的值为 1.0(如上一段代码所示),则一切正常。 但是我需要删除是半透明的(这样用户需要在同一个地方刷几次才能完全删除)。问题就出现在这里。如果我使 revealAlpha 小于 1.0,则显示的目标图像看起来已损坏。

以下是 revealAlpha == 1.0revealAlpha == 0.1 的结果:

image2 http://img593.imageshack.us/img593/1809/69373874.png

如果你看的足够近,你会发现右图的蓝色渐变不再平滑了。

最佳答案

我同意另一张海报。看起来您的图像没有损坏。相反,看起来您正在使前 View 部分可见。作为测试,尝试将revealAlpha 更改为0.5。这样,用手指轻扫一次会将前层的不透明度设置为 50%,第二次轻扫会将其设置为 0%。知道发生了什么会更容易。

关于iphone - iOS 核心图形 : Stroking with semi-transparent patterns leads to colors corruption,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6294570/

相关文章:

javascript - 为什么jplayer在iphone上玩?

在闪光灯模式下拍照后 iPhone 相机延迟

ios - 当应用程序被删除时,存储在 NSUserDefaults 中的值会发生什么变化?

ios - 如何用 Swift 求两个三角形(3 个点)之间的仿射变换

iphone - Xcode - 如何制作通用应用程序

iphone - 如何比较两个 MutableArrays 并在 iphone 中显示不匹配的值?

ios - 当前位置时区缩写

ios - 点击 Collection View 单元格以向 map 添加注释

ios - 从 CGMutablePath 中删除部分

core-graphics - 将 RGBA 与两个 CGImageRef 相乘