# Linux 下图片转换工具
## 1.转换多图成 GIF 图像
```bash
convert -delay 20 *.png filename.gif
convert -delay 50 *.jpg filename.gif
```
delay 参数指定图片切换的间隔。