jordan f wrote:
> Im using the following code to display a logo within an axes object
> in my GUI:
>
> x = imread('kodak','jpg');
> image(x, 'parent', handles.logo);
>
> However, I can not seem to turn off the axis, tick marks, etc.
>
> I've tried:
> x = imread('kodak','jpg');
> image(x, 'parent', handles.logo);
> axis off;
>
> but that opens a new figure and turns off the axis of the new figure.
>
> how can I turn off the axis of my logo?
>
> Thanks
Try this demo. It works.
http://www.mathworks.nl/matlabcentral/fileexchange/loadFile.do?objectId=4859&objectType=FILE
|