我试图在我的 GUI 中显示 GIF 图像,但它不起作用。它向我显示了一个假图像(不是 GIF,并且具有不同的颜色)。
我知道文件交换中有一个“动画 GIF”,但我更喜欢别的东西:/
我尝试了下一个代码,但它不起作用:
function [] = GUI_400()
hFig = figure('Name','Simulation Plot Window','Menubar','none', 'Resize','off', 'WindowStyle','modal', 'Position',[300 300 1150 600]);
movegui(hFig, 'center');
hAxes = axes('Parent',hFig,'Units','pixels','Position',[362 242 424 359]); %# so the position is easy to define
image(imread('loading.gif', 'gif'),'Parent',hAxes); %# Plot the image
set(hAxes,'Visible','off', 'handlevisibility', 'off'); %# Turn the axes visibility off
end
这是我的 gif 图片: http ://desmond.imageshack.us/Himg822/scaled.php?server=822&filename=loadingoz.gif&res=landing
谢谢!