I have a form which contains several .jpg files. They all print fine.
However, near the bottom of the form, I need to print a light-gray bar
from left to right prior to the footer. I tried to do it by coloring a
line with a height of one inch. When that did not work, I added the
"external-graphic". The graphic works BUT I cannot get the image to be
the proper width and height.
Any ideas?
<fo:block-container position="absolute" top="8.5in" left=".5in"
height="1in" width="7.5in">
<fo:block white-space-collapse="false"
linefeed-treatment="preserve"
color="#DDDDDD"
>
<fo:external-graphic src="url('java/images/FI_Graybar.jpg')"
content-height=".70in" content-width="6in">
</fo:external-graphic>
</fo:block>
</fo:block-container>
Jeff