I'm having problems with graphics in fo:region-end. I want three narrow graphics along the right-hand side (fo:region-end) of a page. All three graphics are varying height (2.3cm, 10cm & 13cm) but are the same width (.3cm). The problem is, the 1st graphic is rendered width=.4cm, the 2nd width=.2cm & the 3rd width=.15cm (these are approximate widths).

I've tried:
- giving the 3 graphics different width values (e.g., .5cm .5cm .5cm; 5cm 5cm 5cm; etc.)
- using every combination of attributes imaginable (width/height; content-width/content-height; width/height/content-width/content-height; width; height; content-width; content-height)
- placing the graphics in 3 tables
- placing the graphics in 3 table-rows
- placing the graphics in 3 blocks


My xsl-fo is below (the fo:table-version is currently commented out). Any help or ideas would be appreciated. I'm stumped.

Web Maestro Clay

<fo:static-content flow-name="xsl-region-end">
  <fo:block padding="0pt" xsl:use-attribute-sets="attributes_HCFA-1500">
    <xsl:call-template name="tmpEnd"/>
  </fo:block>
</fo:static-content>
<!-- .. -->

<!-- REGION-BODY: tmpEnd TEMPLATE -->
<xsl:template name="tmpEnd">
<fo:block padding="0pt" border="0pt">
<fo:block><fo:external-graphic src="url('{$varImagesDirectory}/hcfa-carrier.jpg')" height="2.3cm" border="0"/></fo:block>
<fo:block><fo:external-graphic src="url('{$varImagesDirectory}/hcfa-patient.jpg')" height="9cm" border="0"/></fo:block>
<fo:block><fo:external-graphic src="url('{$varImagesDirectory}/hcfa-physician.jpg')" height="12cm" border="0"/></fo:block>
<!--fo:table table-layout="fixed" padding="0pt" margin-top=".3cm">
<fo:table-column column-width=".3cm"/>
<fo:table-body>
<fo:table-row height="2.3cm">
<fo:table-cell padding="0pt" border-bottom=".5pt solid {$varColor}" display-align="center">
<fo:block border-bottom=".5pt solid {$varColor}"><fo:external-graphic src="url('{$varImagesDirectory}/hcfa-carrier.jpg')" height="2.2cm"/></fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row height="10cm">
<fo:table-cell padding="0pt" border-bottom=".5pt solid {$varColor}" display-align="center">
<fo:block border-bottom=".5pt solid {$varColor}"><fo:external-graphic src="url('{$varImagesDirectory}/hcfa-patient.jpg')" height="19.9cm"/></fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row height="13cm">
<fo:table-cell padding="0pt" border-bottom=".5pt solid {$varColor}" display-align="center">
<fo:block border-bottom=".5pt solid {$varColor}"><fo:external-graphic src="url('{$varImagesDirectory}/hcfa-physician.jpg')" height="22.8cm"/></fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table-->
</fo:block>
</xsl:template>


Clay Leeds - [EMAIL PROTECTED]
--
Web Developer - Medata, Inc. - <http://www.medata.com/>
PGP Public Key: <https://mail.medata.com/pgp/cleeds.asc>


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to