Index...
Centrallix Documentation
|
report/image
image :: An image (graphic/photo)
Metadata:
type: | report/image |
visual: | yes |
container: | no |
Overview:
The image object allows a graphics file or photo to be embedded in the report. Currently only the PNG format is supported, so convert your image to PNG before using it in a report.
The output quality is determined by the 'resolution' setting specified in the system/report object. Lower resolutions result in a poorer quality but also result in faster-running reports.
Usage:
The image object may be used inside the system/report, or inside areas, table rows, or table cells.
See 'Common Properties' for x, y, width, and height, which are used for positioning the image.
Properties:
Property | Type | Description |
source |
string |
The ObjectSystem path to the PNG image file. |
Child Properties:
none currently available
Sample Code:
img "report/image"
{
x=0; y=0; height=4.44; width=65;
source = "/images/DocumentHeader.png";
}
Comments...
(none yet)
Add a Comment...
|