在 PDF 的 CGRect 中绘制文本
我正在尝试创建 PDF,并且有一些文本。它比一行长,所以我不确定如何将它写入我的上下文中。我是否首先计算文本大小的 CGRect?从那里,我将如何在创建 PDF 时进行自动换行或类似操作?到目前为止,我所能做的就是在正确的位置绘制标题:-。谢谢。
I'm trying to create a PDF and I have some text. It is longer than one line, so I'm not sure how I need to write it into my context. Do I calculate a CGRect the size of my text first? From there, how would I do word wrap or things like that in creating a PDF? So far all I've been able to do is to just draw a title at the correct location :-. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 Core Text,因为这是一个相当强大的文本渲染框架,可以很好地与 Quartz 配合使用。使用 CTFrame 类可以轻松完成您想要做的事情。
I recommend using Core Text, as this is a fairly powerful text rendering framework that plays nicely with Quartz. What you're trying to do is easily accomplished using the CTFrame class.