如何在 JTextPane 中放置双倍宽度和双倍高度的字符?

How to put double width and double height characters in a JTextPane?

我正在使用 JTextPane 来显示一种使用等宽字体的公交车票。我正在使用 StyleConstantsSimpleAttributeSet 来设置粗体和斜体文本,但我还想使用双倍宽度和高度的字符。我不想制作双倍大小的字体,双倍我的意思是我想要双倍宽度的字符 'A' 会在宽度上拉伸,但不会在高度上拉伸,反之亦然-高度,就像我发现的这张图片 here.

我真的不知道有什么方法可以这样做,谷歌搜索也没有给我答案。也许有办法水平和垂直调整字体大小?

虽然它适用于 JEditorPane,但也应该适用于 JTextPane http://java-sl.com/tip_text_height_measuring.html

要将字体大小调整为双倍宽度:

// Input: an existing Font object called 'font'.
final int style = Font.PLAIN;
AffineTransform transform = new AffineTransform();
transform.setToScale(2.0, 1.0);
Font doubleWidthFont = font.deriveFont(style, transform);

我还没有尝试过这段代码,所以如果它不能完全按照写的那样工作,请告诉我。