Subodh
Subodh

Reputation: 21

Apache fop font-size

I need to create report using Apache-FOP, I want that report in different font-sizes such as (10pts,20pts) , so is that possible to give font size as input in xsl template? Please if you have any suggestions please post it.

Upvotes: 0

Views: 963

Answers (1)

Koray Tugay
Koray Tugay

Reputation: 23844

<xsl:attribute name="font-size">24pt</xsl:attribute>
<xsl:attribute name="font-family">Helvetica</xsl:attribute>
<xsl:attribute name="color">#848587</xsl:attribute>
<xsl:attribute name="font-weight">Light</xsl:attribute>

Upvotes: 0

Related Questions