2016-06-01 Convert LinuxShell NoteShell Imagemagick Command – Convert12345678910## get image infoidentify $filename# resize## ! can force-cast to the required size convert -resize 160x80! $infile $outfile # quality## compress with quality, generally 60 -80 convert -quality [0-100] $infile $outfile e.g, resize jpg in current file1234#!/bin/bashfor file in `ls *.jpg`; do convert $file -resize 256x160! -quality 30 $filedone Title:Convert Author:_IDLER_ License: "CC BY-NC-SA 4.0" Keep Link & Author if Distribute. Cmd Login Markdown Note