Adding image to image component

조회 수: 5 (최근 30일)
Jacques Juicy Patureau Ravina
Jacques Juicy Patureau Ravina 2022년 5월 4일
답변: Poorna 2023년 9월 20일
Hi,
How do I add an image from my deskop so that it gets displayed in the image component based on the selection of a user from the drop list item component and a switch? (app designer)
  댓글 수: 1
Rik
Rik 2022년 5월 4일
I suspect that is a uiaxes object. Could you attach the mlapp file to your question?
For general advice and examples for how to create a GUI, have look at this thread.

댓글을 달려면 로그인하십시오.

답변 (1개)

Poorna
Poorna 2023년 9월 20일
Hi Jacques,
I understand that you would like to dynamically change the image displayed in the image container based on the selected value from the dropdown.
To achieve this, you can utilize the "ValueChangedFcn" callback property of the dropdown component. This callback function will be triggered whenever the user selects a different item from the dropdown.
You can create a callback function, let's call it "DropDownValueChanged", which retrieves the selected value from the dropdown and sets the "ImageSource" property of the image component accordingly. Here's an example implementation:
function DropDownValueChanged(app, event)
% Retrieve the selected value from the dropdown
value = app.DropDown.Value;
% Set the ImageSource property of the image container based on the selected value
if value == 'Option 1'
app.Image.ImageSource = 'img1.jpg';
elseif value == 'Option 2'
app.Image.ImageSource = 'img2.jpg';
else
app.Image.ImageSource = 'img3.jpg';
end
end
In this example, the "DropDownValueChanged" function is triggered when the user selects a different option from the dropdown. It retrieves the selected value and sets the "ImageSource" property of the image component accordingly. You can customize the image file names and paths based on your specific requirements.
For more information on the "ValueChangedFcn" callback property of the dropdown component and the "ImageSource" property of the image component, you can refer to the following documentation:
Hope this helps!

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by