*Image()
Adds an image to a page header or footer.
Syntax
*Image ("Path")
Application
MotionView, HyperView, HyperGraph, TextView, and MediaView.
Inputs
- "Path"
 - The path of the image file.
 
Context
*BeginFooter()
*BeginRegion()
Example
*BeginFooter() 
    *BeginRegion(0, 0, 100, 1000) 
      *Image("Altair_logo.gif") 
      *Text("Your Name")
      *BorderWidth(1,1,1,1)
    *EndRegion() 
    *BeginRegion(100, 0, 900, 500)
      *Alignment(Center)
      *Font("Helvetica",0,0,12)
      *Text("{time} on {date}")
    *EndRegion()
*EndFooter() 
      Comments
The following image formats are supported: JPG, GIF(format 83), and BMP.
Images are fitted vertically and centered horizontally.