ez.no / exponential / documentation / reference / template operators / pdf / image
pdf( image, hash( src, image_path,
[ width, image_width, ]
[ height, image_height, ]
[ align, justification, ]
[ x, x_position, ]
[ y, y_position, ]
[ dpi, resolution, ]
[ static, flow_properties ] ) ) }
| Name | Type | Description | Required |
|---|---|---|---|
| src | string | Full image path | yes |
| width | integer | Image width | no |
| height | integer | Image height | no |
| align | string | Image alignment, default center | no |
| x | integer | Absolute x offset | no |
| y | integer | Absolute y offset | no |
| dpi | integer | Image resolution | no |
| static | boolean | Image float properties | no |
Insert Jpeg or Png image into PDF document. Note, Png images must be without alpha channel.
If static parameter is set to 1, other content will not float around the image, and it may be overwritten.
Available from 3.3 and newer.
Parameters x, y, dpi and static are only available in 3.4 and newer.
{pdf( image, hash( src,$image.full_path, width,$image.width, height,$image.height ) ) }
log in or create a user account to comment.
Comments
Images path
Vivek Chopra
Friday 14 May 2004 1:27:12 am
Vivek