gpt4 book ai didi

iphone - 如何在iPhone上使用Quartz显示文本?

转载 作者:行者123 更新时间:2023-12-03 18:38:03 24 4
gpt4 key购买 nike

我一直在尝试使用 Quartz 上下文显示文本,但无论我尝试什么,我都没有运气显示文本(尽管我能够显示各种其他 Quartz 对象) )。有人知道我可能做错了什么吗?

示例:

-(void)drawRect:(CGRect)rect
{
// Drawing code
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSelectFont(context, "Arial", 24, kCGEncodingFontSpecific);
CGContextSetTextPosition(context,80,80);
CGContextShowText(context, "hello", 6);
//not even this works
CGContextShowTextAtPoint(context, 1,1, "hello", 6);
}

最佳答案

好的,我明白了。首先,将编码模式更改为 kCGEncodingMacRoman。其次,在其下方插入这一行:

CGContextSetTextMatrix(canvas, CGAffineTransformMake(1, 0, 0, -1, 0, 0));

这会设置文本的转换矩阵,以便正确绘制文本。如果您不添加该行,您的文本将上下颠倒并从后向前。不知道为什么这不是默认值。最后,确保您设置了正确的填充颜色。如果您忘记将背景颜色更改为文本颜色并最终得到白底白字,那么这是一个很容易犯的错误。

关于iphone - 如何在iPhone上使用Quartz显示文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/143215/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com