You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Lukas Theussl (JIRA)" <ji...@codehaus.org> on 2010/06/04 20:12:12 UTC

[jira] Updated: (MPDF-29) Improve figure scaling

     [ http://jira.codehaus.org/browse/MPDF-29?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lukas Theussl updated MPDF-29:
------------------------------

    Fix Version/s: 1.2

> Improve figure scaling
> ----------------------
>
>                 Key: MPDF-29
>                 URL: http://jira.codehaus.org/browse/MPDF-29
>             Project: Maven 2.x PDF Plugin
>          Issue Type: Improvement
>    Affects Versions: 1.0
>            Reporter: Lukas Theussl
>             Fix For: 1.2
>
>
> From a private mail:
> Today, I found an extremely useful tip for how to get the images/graphics "right" both in HTML and PDF. As you know and write in the FAQ, there is a challenge with scaling the images, especially when using APT.
> I think it would be useful for others, if you could publish this tip on the site for the plugin.
> What I did was this:
> I made a copy of the original fo-styles.xslt, names it pdf-config.xml in my src/site/resources.
> Then I replaced the following section:
> {code:xml}
> <xsl:attribute-set name="figure.graphics">
>     <xsl:attribute name="width">auto</xsl:attribute>
>     <xsl:attribute name="height">auto</xsl:attribute>
>     <xsl:attribute name="content-width">auto</xsl:attribute>
>     <xsl:attribute name="content-height">auto</xsl:attribute>
> </xsl:attribute-set>
> {code}
> with this:
> {code:xml}
> <xsl:attribute-set name="figure.graphics">
>     <xsl:attribute name="content-width">scale-down-to-fit</xsl:attribute>
>     <xsl:attribute name="content-height">scale-down-to-fit</xsl:attribute>
>     <xsl:attribute name="width">100%</xsl:attribute>
>     <xsl:attribute name="height">100%</xsl:attribute>
> </xsl:attribute-set>
> {code}
>  
> And VOILA, the scaling was perfect!

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira