Skip to content
JPG批量转png
2025年3月13日 root
shell
wget https://imagemagick.org/archive/binaries/magick
chmod +x magick 
cp magick data
for i in `ls *.JPG | awk -F . '{print$1}'` ; do ./magick "$i".JPG -resize 752x480 -verbose "$i".png ; done

Last updated: