Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Besides the background of the dashboard, is there an object that will hold a JPG photograph?

I want to place a different photograph on every page of a QV report.  Is there an object that holds a JPG photo (other than the one in the background of the dashboard sheet?

4 Replies
ramoncova06
Specialist III
Specialist III

I believe most objects are capable as having an image as background, the most common thing is to use text objects for this kind of thing

Not applicable
Author

Try texbox, set the size

petter
Partner - Champion III
Partner - Champion III

Actually most objects can show JPG/PNG images/photos that can be dynamically changed and retrieved either via the load script or during run-time from URLs or Windows file-system.

The drop-down called "representation" that you find many places is usually set to "text" but could be changed to "image".

Not applicable
Author

Text object you can go to the general tab and change the radio button in background to image and change to image required

you can load the images to qvw file if required using the

Bundle 

LOAD * INLINE [

    CustImg, Image

    <String to identify the image>, <Filepath>\<FileName>

    <String to identify the image>, <Filepath>\<FileName>

];

once you have loaded the image in the qvw file you can

use a text object

go to properties

general tab

in the Text box

='qmem://CustImg/<String to identify the Image>'

and change the representation to image