package com.itextpdf.samples.htmlsamples.chapter06; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import com.itextpdf.html2pdf.ConverterProperties; import com.itextpdf.html2pdf.HtmlConverter; import com.itextpdf.html2pdf.resolver.font.DefaultFontProvider; import com.itextpdf.io.font.FontProgram; import com.itextpdf.io.font.FontProgramFactory; import com.itextpdf.layout.font.FontProvider; import com.itextpdf.licensing.base.LicenseKey; public class C06E05_ExtraFont { /** * The path to the resulting PDF file. */ public static final String DEST = "./target/htmlsamples/ch06/fonts_extrafont.pdf"; /** * The path to the source HTML file. */ public static final String SRC = "./src/main/resources/htmlsamples/html/fonts_extra.html"; /** * The path to an extra font. */ public static final String FONT = "./src/main/resources/htmlsamples/fonts/cardo/Cardo-Regular.ttf"; /** * The main method of this example. * * @param args no arguments are needed to run this example. * @throws IOException signals that an I/O exception has occurred. */ public static void main(String[] args) throws IOException { try (FileInputStream license = new FileInputStream(System.getenv("ITEXT7_LICENSEKEY") + "/itextkey-html2pdf_typography.json")) { LicenseKey.loadLicenseFile(license); } File file = new File(DEST); file.getParentFile().mkdirs(); C06E05_ExtraFont app = new C06E05_ExtraFont(); app.createPdf(SRC, FONT, DEST); } /** * Creates the PDF file. * * @param src the path to the source HTML file * @param font the path to an extra font * @param dest the path to the resulting PDF * @throws IOException signals that an I/O exception has occurred. */ public void createPdf(String src, String font, String dest) throws IOException { ConverterProperties properties = new ConverterProperties(); FontProvider fontProvider = new DefaultFontProvider(); FontProgram fontProgram = FontProgramFactory.createFont(font); fontProvider.addFont(fontProgram); properties.setFontProvider(fontProvider); HtmlConverter.convertToPdf(new File(src), new File(dest), properties); } }