“ImageMagick”的版本间的差异
跳到导航
跳到搜索
第20行: | 第20行: | ||
=== 将外侧的白色区域变为透明 === | === 将外侧的白色区域变为透明 === | ||
− | + | <syntaxhighlight lang=bash> | |
+ | convert input.png -fill none -draw 'color 1,1 floodfill' output.png | ||
+ | </syntaxhighlight> | ||
[[Category:Command Line]] | [[Category:Command Line]] |
2021年4月20日 (二) 01:59的版本
ImageMagick 是一个图像处理工具。
例子
转换格式
convert input.png output.jpg
剪裁
convert -crop 800x600+10+10 input.png output.png
剪裁白色区域
convert input.png -trim output.png
将白色区域变为透明
convert input.png -transparent white output.png
将外侧的白色区域变为透明
convert input.png -fill none -draw 'color 1,1 floodfill' output.png