在 Java 中打印 - 字符距离太近
我正在使用 Graphics2D 类从 Java 应用程序打印一些文本。为了打印它,我正在实现 Printable 接口和 Graphics2D 类。然后我使用 Graphics2D 中的方法drawString。
问题是,有时(取决于我要打印的字符串),一些字符彼此重叠,并且字符之间的间距非常大。
有谁知道为什么?
I am using the class Graphics2D to print some texts from a Java application. To print it I am implementing the interface Printable and the class Graphics2D. Then I use the method drawString from Graphics2D.
The thing is that sometimes (depending on the string I am printing), some characters are on top of each other and the spacing between characters is crazy.
Does anyone know why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题提到设置RenderingHints。分数度量、抗锯齿或提示可能有用。您也可以尝试其他字体。
This question mentions setting RenderingHints. Fractional metrics, anti-aliasing or hinting might be of use. You could try another font too.
此问题的解决方法 将公共静态属性 RasterPrinterJob.shapeTextProp 设置为 true。
For workaround of this issue Set the public static property RasterPrinterJob.shapeTextProp to true.