Focal Point
Adding image to footer

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9391008331

October 28, 2004, 03:28 PM
wfsharon
Adding image to footer
I'm having trouble positioning an image in a footer.

Because we use a common footer among our reports in include a separate fex:



.
ON ABC SUBFOOT
""Grand Total Distributions
-INCLUDE RptFooting
The RptFooting fex looks like this:


-* File RptFooting.FEX
FOOTING BOTTOM
"Report Date: "Time Printed: "Page: I want to add a right justified image to this footer. In the style section I've added this:


TYPE=FOOTING, IMAGE=Powered_trans.gif, JUSTIFY=RIGHT, SIZE=(1.337 .28), $[/code]but the image merely displays over the text. I've tried positioning, like so,


TYPE=FOOTING, IMAGE=Powered_trans.gif, POSITION=(8 8), SIZE=(1.337 .28), $
but the image just doesn't show up whenever any positioning code is introduced.

Any suggestions for alternate means of showing this image?

Thanks!

This message has been edited. Last edited by: <Mabel>,
October 28, 2004, 05:58 PM
Spence
Make your report output PDF and your image should appear with your current code.
October 28, 2004, 07:37 PM
wfsharon
Sorry. Reports were built in PDF format from the start.
October 30, 2004, 11:18 PM
Piipster
Try adding some blank lines in the footing to allow space for the image.
November 01, 2004, 01:34 PM
Spence
This code places an image to the right of the footer.
TABLE FILE CAR
SUM SALES
BY COUNTRY
BY CAR
BY MODEL
FOOTING BOTTOM
"Report Date: &DATEMDYY"
"Report Time: &TOD"
" "
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE SET ONLINE-FMT PDF
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.500000,
RIGHTMARGIN=0.500000,
TOPMARGIN=0.500000,
BOTTOMMARGIN=0.500000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
FONT='ARIAL',
SIZE=9,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
RIGHTGAP=0.125000,
TOPGAP=0.013889,
BOTTOMGAP=0.027778,
$
TYPE=TITLE,
STYLE=BOLD,
$
TYPE=FOOTING,
IMAGE=USFILTERSIEMENSLOGO.gif,
POSITION=(+2.500000 +0.000000),
SIZE=(2.500000 2.500000),
$
ENDSTYLE
END