5

我正在尝试在我的 pdf 中添加新字体,我需要将其加粗并加下划线..

我可以添加新字体,但不能同时使其粗体和下划线。

我尝试了以下方法..

public class PdfGenerator {

    private static final String BASE_FONT = "Trebuchet MS";
    private static final String BASE_FONT_BOLDITALIC = "Trebuchet MS BI";
    private static final String BASE_FONT_BOLD = "Trebuchet MS B";

    private static final Font titlefontSmall = FontFactory.getFont(
            BASE_FONT_BOLD, 10, Font.UNDERLINE);

    static {
        String filePath = "..my font directory";
        String fontPath = filePath + "\\" + "trebuc.ttf";
        String fontPathB = filePath + "\\" + "TREBUCBD.TTF";
        String fontPathBI = filePath + "\\" + "TREBUCBI.TTF";

        FontFactory.register(fontPath, BASE_FONT);
        FontFactory.register(fontPathB, BASE_FONT_BOLD);
        FontFactory.register(fontPathBI, BASE_FONT_BOLDITALIC);
    }

    public void genMyPdf(String filePath) {
        try {
            Document document = new Document();
            PdfWriter writer = PdfWriter.getInstance(document,
                    new FileOutputStream(filePath));
            document.open();

            Paragraph p = new Paragraph("This should be bold & underline",
                    titlefontSmall);
            document.add(p);
            document.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (DocumentException e) {
            e.printStackTrace();
        }

    }

}

我究竟做错了什么 ?

4

5 回答 5

21

you can define a font object with both styles :

private static final Font SUBFONT = new Font(Font.getFamily("TIMES_ROMAN"), 12,    Font.BOLD|Font.UNDERLINE);
于 2014-12-19T10:19:41.760 回答
8

由于您使用的是 IText 库,因此请阅读此处。

基本上使用块然后将这些块添加到文档中。

Chunk underline = new Chunk("Underline. ");
underline.setUnderline(0.1f, -2f); //0.1 thick, -2 y-location
document.add(underline);

我自己没有尝试过,所以我还不知道结果如何。进一步阅读 iText 文档,您似乎必须先定义粗体字体,然后再实现它。本教程显示了使用 iText 使用粗体字体并使用粗体文本制作 pdf 的示例。从那里,我相信你可以将上面的代码实现为粗体文本和 walah!,粗体下划线文本:D

于 2013-03-20T15:38:17.710 回答
2

您可以在您的班级中定义您的字体,如下所示:

 public final static Font CUSTOM_FONT = new Font(Font.FontFamily.TIMES_ROMAN, 8, Font.BOLD | Font.UNDERLINE);

然后将其用作:

paragraph.add(new Phrase( " YOUR TEXT HERE ",PDFCreator.CUSTOM_FONT));
于 2019-09-27T14:00:19.977 回答
1

试试看

Font fontbold = FontFactory.getFont("Times-Roman", 12, Font.BOLD);
        document.add(new Paragraph("Times-Roman, Bold", fontbold));

和 Font.UNDERLINE 用于下划线

于 2013-03-20T15:32:31.450 回答
0

您可以使用以下内容同时获得粗体和下划线:-

Chunk buyerOrder = new Chunk("Buyer's Order Number", FontFactory.getFont(FontConstants.TIMES_ROMAN,8,Font.BOLD));
buyerOrder.setUnderline(0.1f, -2f); 

希望能帮助到你!谢谢

于 2019-09-04T11:13:27.583 回答