Why doesn't the jasper report throw a JRFontNotFoundException if there is no font for the PDF?

I read

and I expected Jasper Reports to output JRFontNotFoundExceptionif the font is not installed on the computer.

But my application does not quit JRFontNotFoundException, although I did not install the used font "Helvetica" on any (Jaspersoft Studios, JasperReports, Adobe Acrobat Reader).

JRXML:

<parameter name="timestamp" class="java.util.Date"/>
[...]
<textField>
    <reportElement x="0" y="0" width="50" height="16" uuid="0007846a-26f1-457a-a198-67a2f7c8417c">
        <property name="local_mesure_unitwidth" value="pixel"/>
        <property name="com.jaspersoft.studio.unit.width" value="px"/>
        <property name="local_mesure_unitx" value="pixel"/>
        <property name="com.jaspersoft.studio.unit.x" value="px"/>
        <property name="local_mesure_unity" value="pixel"/>
        <property name="com.jaspersoft.studio.unit.y" value="px"/>
        <property name="local_mesure_unitheight" value="pixel"/>
        <property name="com.jaspersoft.studio.unit.height" value="px"/>
    </reportElement>
    <box padding="2"/>
    <textElement textAlignment="Left" verticalAlignment="Top">
        <font size="8" pdfFontName="Helvetica" pdfEncoding="Cp1250" isPdfEmbedded="true"/>
    </textElement>
    <textFieldExpression><![CDATA[DATEFORMAT($P{timestamp},"dd.MM HH:mm")]]></textFieldExpression>
</textField>

Maven Dependencies:

<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports</artifactId>
    <version>5.6.0</version>
</dependency>
<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports-functions</artifactId>
    <version>5.6.0</version>
</dependency>

Java:

private byte[] createPdf() {

    try {
        InputStream is = getClass().getResourceAsStream("MyReport.jasper");
        JasperReport jasperReport = (JasperReport) JRLoader.loadObject(is);
        Map<String, Object> parameters = new HashMap<String, Object>();
        parameters.put("timestamp", new Date());
        JRDataSource jrDataSource = new JRBeanCollectionDataSource(new Vector(), false);
        JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, jrDataSource);
        byte[] pdf = JasperExportManager.exportReportToPdf(jasperPrint);
        return pdf;
    } catch (JRException e) {
        throw new RuntimeException("Could not create PDF.", e);
    }
}

The reason is that it JRFontNotFoundExceptionis called only if the font in the attribute is fontNamenot set:

, , , fontName , JasperReports , , Java.

PDF, pdfFontName ( )?

+4
1

pdfFontName fontName

pdfFontName , , , itext, jasper-reports JRFontNotFoundException, , itext , JRRuntimeException.

itext Helvetica afm , itext , , , ( , = ) jasper. , pdfFontName pfdEncoding .

PDF, pdfFontName ?

pdfFontName, ( ), fontName="Helvetica", jasper-reports JRFontNotFoundException if .

fontName, font -extensions, ttf, .

: Identity-H, PDF .

+5

Source: https://habr.com/ru/post/1652183/


All Articles