Graphics on pushbuttons for gUI's

2 views (last 30 days)
Jason
Jason on 9 Oct 2015
Commented: Jason on 9 Oct 2015
Hi, Im trying to put an image onto a push button. However, I seem to be missing something.
Heres my attempt.
Al=imread('LeftArrow.png');
a(:,:,1) = Al;
a(:,:,2) = Al;
a(:,:,3) = Al;
set(handles.pushbuttonLEFT,'CData',a)

Accepted Answer

Walter Roberson
Walter Roberson on 9 Oct 2015
Your png file is RGB, so Al is already 3 dimensional. When you try to assign the 3 dimensional array to the two dimensional array a(:,:,1) you are going to fail.
  3 Comments
Walter Roberson
Walter Roberson on 9 Oct 2015
If you have the appropriate toolbox you can imresize() what you send into CData.

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks 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!