1

可能重复:
Graphics2D.drawString 中的换行问题

String eol =System.lineSeparator();  
        String sampleText =epcURNText +eol+studentName+eol+DelayComments+eol+ArrivalMethodComments+eol;
        System.out.println(sampleText);
        Font font = new Font("Tahoma", Font.PLAIN, 11);
        FontRenderContext frc = new FontRenderContext(null, true, true);

        //get the height and width of the text
        Rectangle2D bounds = font.getStringBounds(sampleText, frc);
        int w = (int) bounds.getWidth();
        int h = (int) bounds.getHeight();

        //create a BufferedImage object
        BufferedImage image = new BufferedImage(w, h,
                BufferedImage.TYPE_INT_RGB);

        //calling createGraphics() to get the Graphics2D
        Graphics2D g = image.createGraphics();

        //set color and other parameters
        g.setColor(Color.WHITE);
        g.fillRect(0, 0, w, h);
        g.setColor(Color.BLACK);
        g.setFont(font);

        g.drawString(sampleText, (float) bounds.getX(),
                (float) -bounds.getY());

        //releasing resources
        g.dispose();



        // define the format of print document
        ByteArrayOutputStream os = new ByteArrayOutputStream();
        ImageIO.write(image, "gif", os);
        File f = new File("MyFile.jpg");
        ImageIO.write(image, "JPEG", f);

在上述代码中,我试图在图像中打印带有换行符的字符串。但是,换行符被省略,因此我的文本显示在一行中?有人知道如何解决这个问题吗?

4

1 回答 1

2

JLabel以 HTML 格式呈现文本,如本答案LabelRenderTest中的源代码所示。

它提供了比换行符更好的东西——体宽的样式。更好的是,我们不需要手动计算在哪里放置文本换行符(也可能以非固定宽度的字体呈现)。

于 2012-11-01T11:55:09.630 回答