在图像中打印行分隔符

时间:2012-11-01 11:29:08

标签: java string image newline

  

可能重复:
  Problems with newline in 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);

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

1 个答案:

答案 0 :(得分:2)

使用HTML格式在JLabel中呈现文字,如this answer中的LabelRenderTest来源所示。

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