核心图形文本剪辑

时间:2013-04-27 20:26:11

标签: ios cgcontext

我有以下代码工作,绘制一个白色矩形并将其剪辑为“TEXT”字符串。

enter image description here

CGContextSaveGState(c);
CGContextTranslateCTM(c, 0.0f, rect.size.height);
CGContextScaleCTM(c, 1.0f, -1.0f);
CGContextSelectFont(c, "Helvetica-Bold", 16, kCGEncodingMacRoman);
CGContextSetTextDrawingMode(c, kCGTextClip);
CGContextShowTextAtPoint(c, x, y, "TEXT", strlen("TEXT"));
CGContextClip(c);
CGContextFillRect(c, fillRect);
CGContextRestoreGState(c);

但我希望它剪辑,以便它只在文本之外绘制。我该怎么做?

0 个答案:

没有答案