如何绘制不同字体大小的PDF文件?
我目前正在开发 PDF 阅读器应用程序。我在带有动画的平铺图层中绘制 PDF 文件。
现在我想绘制不同字体大小的PDF(不是PDF中指定的大小)。我该怎么做?
I am currently working on a PDF Reader application. I draw PDF files in a tiled layer with animation.
Now I want to draw PDFs with different font size (not the size specified in PDF). How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于 PDF 的性质,实际上不可能正确地做到这一点。
即使您能够以某种方式介于阅读和绘制 PDF 之间,您最终也会得到混乱的输出。
例如,PDF 页面的布局几乎是固定的,更改字体大小不会使文本和其他页面元素像 HTML 页面一样移动和换行。
It's not really possible to do this right, given the nature of the PDF.
Even if you will be able to somehow get in between reading and drawing of PDFs you'll get messed up output in the end.
PDF pages are pretty much fixed in layout and changing font sizes won't make text and other page elements to move and wrap like HTML pages, for example.