回答:
あなたはmogrifyを試すことができます:
http://www.imagemagick.org/www/mogrify.html
画像圧縮の具体例もご覧ください。
/ubuntu/25356/decrease-filesize-when-resizing-with-mogrify
mogrify -quality 80 -resize 80 file.jpg
だからあなたは次のようなものになるはずです
mogrify -quality 80 file.jpg
私のマシンからテストする:
aaron@sandbox:~/img-test$ du -h splash.jpg
188K splash.jpg
aaron@sandbox:~/img-test$ mogrify -quality 10 splash.jpg
aaron@sandbox:~/img-test$ du -h splash.jpg
16K splash.jpg
10%でこれはひどいように見えますが、あなたはアイデアを得ます。
PythonのPILを使用することもできます。
/programming/4353019/in-pythons-pil-how-do-i-change-the-quality-of-an-image
PILインポートイメージから
im = Image.open( "C:\ Users \ Public \ Pictures \ Sample Pictures \ Jellyfish.jpg")im.save( "C:\ Users \ Public \ Pictures \ Sample Pictures \ Jellyfish_compressed.jpg"、quality = 10)