目前我正在开发一个matlab GUIDE,并希望将图像作为GUI的背景。我可以知道如何在GUI中包含静态图像吗?
答案 0 :(得分:3)
您应该使用axes
图形控件:
f= figure()
a = axes('Position',[0 0 1 1],'Units','Normalized');
imshow('peppers.png','Parent',a);
你可以在轴上方放置任何你想要的东西:
uicontrol('Style','text','Units','Normalized','Position',[0.1 0.1 0.3 0.6],'String','Example');
你也可以在GUIDE中完成,简单地在整个图形上手动拉伸轴。
答案 1 :(得分:3)
还有另一种方法可以做到这一点。
去
function untitled_OpeningFcn(hObject, eventdata, handles, varargin)
和handles.output = hObject;
之间的
guidata(hObject, handles);
功能正确记下以下代码
% create an axes that spans the whole gui
ah = axes('unit', 'normalized', 'position', [0 0 1 1]);
% import the background image and show it on the axes
bg = imread('your_image.jpg'); imagesc(bg);
% prevent plotting over the background and turn the axis off
set(ah,'handlevisibility','off','visible','off')
% making sure the background is behind all the other uicontrols
uistack(ah, 'bottom');