如何从保存框架尺寸的GIF文件中提取框架
我有以下的GIF图像文件:
我想使用这个imagemagick命令来提取它的帧(使用PGM输出格式):
convert brocoli.gif out%05d.pgm
但每个框架都有不同的大小。
我怎样才能提取其框架,同时保留原始的gif文件大小?
使用-coalesce
选项:
convert -coalesce brocoli.gif out%05d.pgm
我有以下的GIF图像文件:
我想使用这个imagemagick命令来提取它的帧(使用PGM输出格式):
convert brocoli.gif out%05d.pgm
但每个框架都有不同的大小。
我怎样才能提取其框架,同时保留原始的gif文件大小?
使用-coalesce
选项:
convert -coalesce brocoli.gif out%05d.pgm