Magnolia 5.6 reached end of life on June 25, 2020. This branch is no longer supported, see End-of-life policy.
imgfn
templating functions provide useful functions for handling image resources stored in any workspace. They are commonly used to resolve image variations.
Magnolia recommends you store images in the DAM workspace and use damfn
templating functions instead to benefit from the DAM API (see How to work with images using damfn).
Retrieves a link to an image variation from binary content.
String getImageVariationLinkFromBinary(ContentMap binaryContent, String variation)
or
String getImageVariationLinkFromBinary(Node binaryContent, String variation)
binaryContent | required Either the ContentMap or the Node of the binary you want to render. |
variation
| optional An image variation defined in the site theme.
|
String
A link to an image variation.
imgfn.getImageVariationLinkFromBinary(binaryContent, variation)
[#assign binaryNode = cmsfn.asJCRNode(content).getNode('binaryNodeName')] [#assign imgLink = imgfn.getImageVariationLinkFromBinary(binaryNode,'original')] [#assign imgLink240 = imgfn.getImageVariationLinkFromBinary(binaryNode,'240')]
The example above assumes that you have defined an image variation named 240
in your theme.
binaryNodeName
is the default name of the subnode that contains the file binary and related information. Use cmsfn to transform this node into a JCR node that can be used in templating function arguments.