Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are three ways the image size can be determined.

1. The image is already the desired size

If the image modifier is used without arguments the image will maintain it's original dimensions.
ex. %%=Company.Logo(image)

2. The image should take on the size of the textbox containing the data marker.

If the image modifier is used with a scaling mode, the image will be scaled accordingly and sized to fit the containing text box.
ex:%%=Company.Logo(image(1))

3. The image dimensions are given as arguments in the image modifier.

The image modifier can take parameters specifying the image dimensions. Dimensions can be used with a scaling mode. All dimensions are in inches.
The syntax for specifying an images dimensions without the scaling mode is image(width, height).
ex. %%=Company.Logo(1,2).
To use a scaling mode, add it as the first parameter in your modifier.
ex. %%=Company.Logo(image(3,1,2))

...