|
Description
|
When "forresting" a document that has embedded images, the PDF rendering sometimes stops with this error message:
BROKEN: org.apache.fop.apps.FOPException: No meaningful layout in block after many attempts. Infinite loop is assumed. Processing halted.
I've found that this is caused by images that are too big to fit in the PDF page (took me some times :) )
I temporary "solved" it by modifying the document2fo.xsl. When I specify the "width" or "height" attribute to the img, then the value is taken and divided by 2. WARNING: the value has to be an integer and a "px" (pixels) size.
We should find a way to reduce the size automatically.
$ diff -bruN document2fo.xsl~ document2fo.xsl
--- document2fo.xsl~ 2004-12-09 17:51:42.486185200 +0100
+++ document2fo.xsl 2004-12-09 22:03:32.465852800 +0100
@@ -755,10 +755,14 @@
</xsl:variable>
<fo:external-graphic src="{$imgpath}">
<xsl:if test="@height">
- <xsl:attribute name="height"><xsl:value-of select="@height"/></xsl:attribute>
+ <xsl:variable name="reducedheight"
+ select="number(@height)" />
+ <xsl:attribute name="height"><xsl:value-of select="concat(number($reducedheight) div 2,'px')"/></xsl:attribute>
</xsl:if>
<xsl:if test="@width">
- <xsl:attribute name="width"><xsl:value-of select="@width"/></xsl:attribute>
+ <xsl:variable name="reducedwidth"
+ select="number(@width)" />
+ <xsl:attribute name="width"><xsl:value-of select="concat(number($reducedwidth) div 2,'px')"/></xsl:attribute>
</xsl:if>
</fo:external-graphic>
<!-- alt text -->
|
When "forresting" a document that has embedded images, the PDF rendering sometimes stops with this error message:
BROKEN: org.apache.fop.apps.FOPException: No meaningful layout in block after many attempts. Infinite loop is assumed. Processing halted.
I've found that this is caused by images that are too big to fit in the PDF page (took me some times :) )
(Moved workaround from Description to Comment - see 2005-12-24)
|
|
Other Info
|
|
[Patch available]
|