- Make the geometry smaller.
- Make the color table shorter.
- Use frame optimization.
set the quality of GIF
26 次查看(过去 30 天)
显示 更早的评论
x = 0:0.1:10;
y = sin(x);
fig = figure;
lines = animatedline('Color', 'red');
xlim([0 10]); ylim([-1 1]);
frames(100) = struct('cdata', [], 'colormap', []);
filename = 'filename.gif';
for i = 1:100
addpoints(lines, x(i), y(i));
drawnow;
frames(i) = getframe(fig);
[A, map] = rgb2ind(frame2im(frames(i)), 256);
if i == 1
imwrite(A, map, filename, 'gif', 'DelayTime', 1/30)
else
imwrite(A, map, filename, 'gif', 'DelayTime', 1/30, 'WriteMode', 'append');
end
end
How to change the quality of this GIF. Since the capacity is large, I want to reduce the capacity.
0 个评论
采纳的回答
DGM
2021-11-21
GIF has no "quality" parameter. For the most part, you have three choices:
Options 1 and 2 should be pretty obvious. Either use imresize() or specify a shorter CT when calling rgb2ind().
Option 3 isn't really practical within the scope of MATLAB and imwrite(). Write the image and use some external tool (ImageMagick, GIMP, etc) to optimize it.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Modify Image Colors 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!