ITEXTPDF 5 : Print svg with specifical fonts

299 Views Asked by At

I'm using ItextPdf 5.

I have an SVG file with specifical font (integrated in svg).

When I print my SVG (using batik 1.8) the graphic is print on my document, but fonts are blocked, so, can't select them.

see below my java code :

public class ItextPdfSmallTests {

    @Test
    public void svgFontsTest() throws IOException, DocumentException, URISyntaxException {
        String RESULT = "C:\\test\\svgFontsTest.pdf";

        Document document = new Document(PageSize.A4, 36, 36, 54, 36);
        PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(RESULT));

        document.open();
        document.add(new Paragraph("SVG Example"));

        int width = 250;
        int height = 250;
        PdfContentByte cb = writer.getDirectContent();
        PdfTemplate template = cb.createTemplate(width, height);

        PdfPrinterGraphics2D g2 = new PdfPrinterGraphics2D(cb, width, height, new MyFontMapper(), PrinterJob.getPrinterJob());


        PrintTranscoder prm = new PrintTranscoder();
        URI svgFileURI = getClass().getResource("myfont.svg").toURI();
        TranscoderInput ti = new TranscoderInput(svgFileURI.toString());
        prm.transcode(ti, null);

        PageFormat pg = new PageFormat();
        Paper pp = new Paper();
        pp.setSize(width, height);
        pp.setImageableArea(0, 0, width, height);
        pg.setPaper(pp);
        prm.print(g2, pg, 0);
        g2.dispose();

        ImgTemplate img = new ImgTemplate(template);
        document.add(img);
        document.close();
    }


    class MyFontMapper extends DefaultFontMapper {

        @Override
        public BaseFont awtToPdf(java.awt.Font font) {
            try {
                return BaseFont.createFont("AmaticSC-Regular.ttf", BaseFont.WINANSI, false);
            } catch (DocumentException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return null;
        }
    }
}

is it possible make it editable ? thanks for your helps

0

There are 0 best solutions below