CGContextSetShadowWithColor将阴影置于投射阴影的文本顶部

时间:2015-05-24 10:01:47

标签: ios text core-graphics shadow

我使用CGContextSetShadowWithColor和核心图形来绘制阴影文本。阴影出现了,但它似乎也“浑浊”了投影阴影的实际文本(应该是纯白色)。就像是在文本顶部投射阴影(但不完全)。

像这样:

Muddy text created with CGContextSetShadowWithColor

如果我在阴影关闭的同一位置重绘文本,我可以用干净的白色文本覆盖泥泞的文本,所以这是一个解决方法,但我想知道:

我做错了什么,或者这是一个错误?

    let shadowOffset : CGSize = CGSize (width: 4, height: 4)

    UIGraphicsBeginImageContextWithOptions(CGSize(width: 800, height: 200), false, 1.0)
    let ctx = UIGraphicsGetCurrentContext()

    CGContextTranslateCTM(ctx, 0, 200);
    CGContextScaleCTM(ctx, 1.0, -1.0);

    CGContextSetAlpha(ctx, 1.0)
    CGContextSetShadowWithColor(ctx, shadowOffset, 5, UIColor(red: 0, green: 0, blue: 0, alpha: 0.5).CGColor)

    CGContextSetAllowsAntialiasing (ctx, true)

    let attr:CFDictionaryRef = [
        NSFontAttributeName : UIFont(name: fontName, size: fontSize)!,
        NSForegroundColorAttributeName:UIColor.whiteColor()]

    let line = CTLineCreateWithAttributedString(CFAttributedStringCreate(nil, "1234567890", attr))

    let bounds = CTLineGetBoundsWithOptions(line, CTLineBoundsOptions.UseOpticalBounds)

    CGContextSetLineWidth(ctx, 1)
    CGContextSetTextDrawingMode(ctx, kCGTextFillStroke)

    CGContextSetTextPosition(ctx, 100.0, 100.0)
    CTLineDraw(line, ctx)

    //Uncomment to clean-up text
    //CGContextSetShadowWithColor(ctx, shadowOffset, 0, nil)
    //CGContextSetTextPosition(ctx, 100.0, 100.0)
    //CTLineDraw(line, ctx)
    let image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    return image

1 个答案:

答案 0 :(得分:2)

致电CGContextSetTextDrawingMode时,请将绘图模式设为kCGTextFill。根据我的理解,你看到的阴影是由文字的笔触铸成的。