$ convert ${in_file} -auto-orient ${out_file}
$ find . -type f -name '*.jpg' | xargs -P ${thread_num} -I@ convert @ -auto-orient @
$ convert <in-file> -rotate <degree-to-rotate> <out-file>
option | description | remark |
---|---|---|
<degree-to-rotate> | 回転度数を degree で指定する。+は時計回り方向、-は半時計回り方向となる |