hi, thx for help. if i use 
<fo:block>sometext1 
      <fo:external-graphic src="00000011.tif" display-align="center" 
scaling="uniform" content-width="80mm"/> 
      st2 
      <fo:external-graphic src="00000011.tif" display-align="center" 
scaling="uniform" content-width="80mm"/> 
      <fo:external-graphic src="00000011.tif" display-align="center" 
scaling="uniform" content-width="80mm"/> 
      <fo:external-graphic src="00000011.tif" display-align="center" 
scaling="uniform" content-width="80mm"/> 
        sometext2</fo:block>

images still overflow my page. there is an example
http://old.nabble.com/file/p27270558/name.pdf name.pdf 


Vincent Hennebert-2 wrote:
> 
> 
> I think you can get rid of fo:inline altogether:
>     <fo:block>sometext1
>       <fo:external-graphic src="00000011.tif" display-align="center"
> scaling="uniform" content-width="80mm"/>
>       st2
>       <fo:external-graphic src="00000011.tif" display-align="center"
> scaling="uniform" content-width="80mm"/>
>       <fo:external-graphic src="00000011.tif" display-align="center"
> scaling="uniform" content-width="80mm"/>
>       <fo:external-graphic src="00000011.tif" display-align="center"
> scaling="uniform" content-width="80mm"/>
>         sometext2</fo:block>
> 
> If you want the image to be on the same line as the preceding text, just
> remove blanks between the two:
>     <fo:block>sometext1<fo:external-graphic ...
> (Although I’m not sure that this is correct behaviour. I think a break
> should still be allowed to occur between the text and the image.)
> 
> If you want no space between the preceding text and the image, yet the
> image to be put on the next line if there is not enough space on the
> current one, just insert a zero-width space:
>     <fo:block>sometext1&#x200B;<fo:external-graphic ...
> 
> And likewise for text following images, or between images.
> 
> HTH,
> Vincent
> 
> 

-- 
View this message in context: 
http://old.nabble.com/problem-with-fo%3Ainline-and-fo%3Aexternal-graphic%2C-overflows-tp26941207p27270558.html
Sent from the FOP - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
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