background for design gui

How do I use background for gui design?

댓글 수: 2

TAB
TAB 2012년 6월 7일
Do you mean, you want to add image in GUI background ?
mostafa
mostafa 2012년 6월 7일
yes
Exactly
i want to add image in GUI background

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

 채택된 답변

TAB
TAB 2012년 6월 7일

0 개 추천

In the OpeningFcn callback of your GUI add below code
BkImage = importdata('backgnd.jpg'); %Read the image file
axes(handles.BkAxes);
image(BkImage);

질문:

2012년 6월 7일

Community Treasure Hunt

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

Start Hunting!

Translated by