编写pdf文件时的字体问题
我有一个可以将字符串写入 pdf 文件的应用程序。我想以表格格式写入数据,因此我格式化了字符串并进行了写入操作。文本显示在 pdf 文件中,但格式不正确。怎么做呢?
示例:
我希望文本显示为:
姓名 地址 电话号码 Aditya Pune xxxxxxxx
它实际上显示为:
姓名 地址 电话号码 Aditya Pune xxxxxxxx
我使用了 stringByPaddingToLenght 方法。所以所有字符串的长度都相同。
I have an application that can write string to pdf file. I want to write data in tabular format so i formatted the string and did write operation. Text shows up in pdf file but its not in proper format. How to do it?
Example :
I want text to be shown as:
Name Address Phone number
Aditya Pune xxxxxxxx
It is actually shown as:
Name Address Phone number
Aditya Pune xxxxxxxx
I have used stringByPaddingToLenght method. So all strings are of same length.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用等宽字体解决了我的问题。
Using Mono-space font solved my problem.