GUI
1 view (last 30 days)
Show older comments
I woluld like to plot a image on any push button or toggle button
can you pls guide me.
0 Comments
Accepted Answer
Gerd
on 7 Jul 2011
Hi murali,
open GUIDE.
Place a button on the gui.
Go to the callback function
logo = imread('Logo.jpg','jpg');
image(logo);
Gerd
8 Comments
Paulo Silva
on 7 Jul 2011
Murali Mohan you accepted the wrong answer but thanks for posting the solution you chosen.
More Answers (2)
Jan
on 7 Jul 2011
Another approach:
pic = fullfile(tempdir, 'picture.png');
uicontrol('Style', 'pushbutton', ...
'String', '
<<file-----pic--.>>
');
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!