由一些图片生成gif的MATLAB代码
程序员文章站
2022-03-02 12:48:42
...
如题。
代码如下:
stepall=60;
for i=1:stepall
picname=[num2str(i) '.jpg'];
im = imread(picname);
% set(gcf,'outerposition',get(0,'screensize'));% matlab窗口最大化
% frame=getframe(gcf);
% im=frame2im(frame);%制作gif文件,图像必须是index索引图像
[I,map]=rgb2ind(im,20);
if i==1
imwrite(I,map,'NameOfYourGifFile.gif','gif', 'Loopcount',inf,'DelayTime',0.2);%第一次必须创建!
elseif i==stepall+1
imwrite(I,map,'NameOfYourGifFile.gif','gif','WriteMode','append','DelayTime',0.2);
else
imwrite(I,map,'NameOfYourGifFile.gif','gif','WriteMode','append','DelayTime',0.2);
end
close all
end