Possible Duplicate:
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);


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

最佳答案

呈现HTML格式的JLabel中的文本,如this answer中的LabelRenderTest源所示。



它提供了比换行符更好的东西-车身宽度样式。从某种意义上讲,更好的是,我们不需要手动计算文本的换行位置(也可以使用非固定宽度的字体呈现)。

10-06 08:44