Using Images
Images can be very useful for displaying important information, such as giving visual representations of real world objects. There are a few ways that images can be brought into a Vision project. The first is by pulling images from The Image Management Tool, where the images are stored in the Gateway. The other way is to grab images using a filepath.
Bringing in images using the Image Management Tool is easy.
- Place an Image component on the Window.
- In the Vision Property Editor, scroll down to Data and click on the Folder Search
icon next to the Image Path property. This will bring up the Image Management Tool. - In the Image Management Tool, find the image you want, and double click to select it.

The path to the image is now displayed in the components Image Path property. Images can be displayed in the image component, but they can also be used in components like labels and buttons.
Instead of using images in the Image Management Tool in Image Path properties of components, you can use the file path to a local image. This is done by prefixing the file path with file:///
. An example Image Path would look like this:Using Local Images
file:///C:/Users/Public/Pictures/Sample Pictures/Chrysanthemum.jpg
It is important to understand that this will only work if the image is accessible from where the client is running. So if you access an image from the Designer on the local machine, clients that launch elsewhere may not have the image stored in the same location. For this reason, we recommend storing the images in a location that everyone can reach, such as a shared drive.
Note: When working with images found online, make sure to follow all applicable copyright laws.