insert a Background without guide

6 views (last 30 days)
Samir Rick
Samir Rick on 6 Jun 2018
Commented: Samir Rick on 6 Jun 2018
Hi,
i need to put a background to my main window i tried this code but it doesn't work
f=figure('Position',get(0,'screensize'));
as=axes('Parent',f,'Position',[400 200 200 150]);
imshow ('Logo.PNG','Parent',as);
Thanks.
  2 Comments
Adam
Adam on 6 Jun 2018
'doesn't work' in what way? Do you mean you want the logo to be the background? And if so what are you defining as background? You explicitly position your axes in a very specific location and size so it won't be a background to the rest of the figure anyway.
Samir Rick
Samir Rick on 6 Jun 2018
the image doesn't appear.
and i want the image to be in specific position.

Sign in to comment.

Accepted Answer

Adam
Adam on 6 Jun 2018
f=figure('Position',get(0,'screensize'));
as=axes('Parent',f,'Units', 'pixels', 'Position',[400 200 200 150]);
imshow ('Logo.PNG','Parent',as);
should work. You need to specify the axes units as 'Normalized' is the default.

More Answers (0)

Categories

Find more on Display Image 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!