Hi Pascal,

yes indeed this was one of my problems.
I will test it to see the results.

In case I will still have to manipulate the image outside of the FOP do you have any solution to propose regarding: How to change the print size of the image (like gimp) in order not to loose image quality and at the same time to show it smaller inside the PDF.

Thank you.

On 17/1/2012 3:42 PM, Pascal Sancho wrote:
Hi,

I guess that by "the result is problematic with very tall images" you
mean that image can overflow the page when h/w ratio is too high.

If this is the case, you can use "max-height" XSL-FO equivalent:

<fo:external-graphic src="{$imageUrl}"
     block-progression-dimension.optimum="$my_minimal_height"
     block-progression-dimension.maximum="$my_maximal_height"
     content-height="scale-to-fit"/>

Le 17/01/2012 12:17, Klearchos Klearchou a écrit :
Dear FOP users,

I want to change an image's print size in order to add it inside a PDF.
I want to do this in order not to loose any quality.
The image must look smaller inside the PDF but the quality should be the
same with the original image.

I know that I could do something like this in my XSLT
(content-width="scale-to-fit"):

<fo:external-graphic src="url('{$imageLink}')"
content-width="scale-to-fit" border="solid 0.1pt" width="90mm" />
<fo:block space-before="{$space}"/>
                                      (<xsl:value-of select="$title"/>)
<fo:block/>
<xsl:value-of select="$description"/>
</fo:block>

but the result is problematic with very tall images.

Thus I thought that I should manipulate the image before passing it to FOP.
I used GIMP and I saw that if I change the print size of the image FOP
uses this size and the quality of the image is very good.

Anybody knows how to solve this problem?

Thank you in advance.



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

Reply via email to