GUI
조회 수: 1 (최근 30일)
이전 댓글 표시
I woluld like to plot a image on any push button or toggle button
can you pls guide me.
댓글 수: 0
채택된 답변
Gerd
2011년 7월 7일
Hi murali,
open GUIDE.
Place a button on the gui.
Go to the callback function
logo = imread('Logo.jpg','jpg');
image(logo);
Gerd
댓글 수: 8
Paulo Silva
2011년 7월 7일
Murali Mohan you accepted the wrong answer but thanks for posting the solution you chosen.
추가 답변 (2개)
Jan
2011년 7월 7일
Another approach:
pic = fullfile(tempdir, 'picture.png');
uicontrol('Style', 'pushbutton', ...
'String', '
<<file-----pic--.>>
');
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!