An image
component is used to display an image at the browser. There are two ways to
assign an image to an image
component. First, you could use the src
property to specify a
URI where the image is located. This approach is similar to what HTML supports. It is useful
if you want to display a static image, or any image that can be identified by URL.
<image src="/my.png">
Like using any other properties that accept an URI, you could specify "*" for identifying a
Locale dependent image. For example, if you have different image for different Locales,
you could use as follows.
<image src="/my*.png">
Then, assume one of your users is visiting your page with de_DE
as the preferred Locale.
Zk will try to locate the image file called /my_de_DE.png
. If not found, it will try
/my_de.png
and finally /my.png
.