笔划正在应用于文本和阴影

时间:2012-03-22 03:55:27

标签: iphone ios quartz-graphics quartz-2d

我试图简单地用笔划绘制一些文本然后应用一个阴影阴影,但是笔划正在应用于投影。我该如何防止这种情况?

Notice stroke is applied to drop shadow

// Setup context
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGContextRef context = CGBitmapContextCreate(NULL, w, h, 8, 4 * w, colorSpace, kCGImageAlphaPremultipliedFirst);

// draw photo into context
CGContextDrawImage(context, CGRectMake(0, 0, w, h), img.CGImage);
// Set Text Font
CGContextSelectFont(context, font.fontName.UTF8String, fontSize, kCGEncodingMacRoman);

// Set Text Drawing Mode
CGContextSetTextDrawingMode(context, kCGTextFillStroke);

// Set text fill color
CGColorRef tmpColor = color.CGColor;
CGFloat newComponents[4] = {};
memcpy(newComponents, CGColorGetComponents(tmpColor), sizeof(newComponents));
CGContextSetRGBFillColor(context, newComponents[0], newComponents[1], newComponents[2], newComponents[3]);

// Calculate Height
UIFont *testFont = [UIFont fontWithName:font.fontName size:fontSize];
CGSize size = [text sizeWithFont:testFont];

// Setup Font Shadow
CGSize shadowSize = CGSizeMake(6, 6);
CGContextSetShadowWithColor(context, shadowSize, 1.0, [[UIColor darkGrayColor] CGColor]);

// Set Stroke Color
CGContextSetRGBStrokeColor(context, 0, 255, 0, 1);
CGContextSetLineWidth(context, 2.0);

// draw text at location centered based on width.
CGContextShowTextAtPoint(context, (w / 2) - (textWidth / 2), h - size.height, ctext, strlen(ctext));

// Render Bitmap
CGImageRef imageMasked = CGBitmapContextCreateImage(context);
UIImage *returnImage = [UIImage imageWithCGImage:imageMasked];

1 个答案:

答案 0 :(得分:2)

由于您的文字绘制模式为kCGTextFillStrokeCGContextShowTextAtPoint首先绘制填充(并为其生成阴影),然后绘制描边(获得自己的阴影)。

要解决此问题,请使用transparency layer

请注意,如果您使用CGContextBeginTransparencyLayerWithRect()并以尽可能小的方式传入,则绘制速度会快得多。

或者:如果它足够接近,您可以考虑分两步绘制文本:

  1. 用阴影填充
  2. 中风,没有阴影
  3. 如果你的中风很小,那么差异就不会很明显,而且它的抽取速度会快得多。