qiushang f2d2a39f3b add hace 7 meses
..
colors.xml f2d2a39f3b add hace 7 meses
configure.xml f2d2a39f3b add hace 7 meses
convert.exe f2d2a39f3b add hace 7 meses
delegates.xml f2d2a39f3b add hace 7 meses
english.xml f2d2a39f3b add hace 7 meses
gsdll32.dll f2d2a39f3b add hace 7 meses
gswin32.exe f2d2a39f3b add hace 7 meses
gswin32c.exe f2d2a39f3b add hace 7 meses
identify.exe f2d2a39f3b add hace 7 meses
locale.xml f2d2a39f3b add hace 7 meses
log.xml f2d2a39f3b add hace 7 meses
mime.xml f2d2a39f3b add hace 7 meses
policy.xml f2d2a39f3b add hace 7 meses
quantization-table.xml f2d2a39f3b add hace 7 meses
readme_converter.txt f2d2a39f3b add hace 7 meses
thresholds.xml f2d2a39f3b add hace 7 meses
type-ghostscript.xml f2d2a39f3b add hace 7 meses
type.xml f2d2a39f3b add hace 7 meses

readme_converter.txt

convert.exe 是imagemagick公司提供的自由软件,用于实现图片类型转换和压缩等功能。

它的转换参数很多,用于图片压缩的命令行格式如下
convert.exe -resize 目标图片宽度x高度 -quality 压缩质量(0~100) 源图片路径 目标图片路径
例如:
convert.exe -resize 800x600 -quality 50 E:\aaa\Images\006.jpg e:\aaa\images\my006_800X600_50-223.png

//PNG转JPG 白色背景
convert -resize 800x600 -quality 50 10.png -background white -flatten -alpha off kk10.jpg