문제

How can i find and resize images with resolution higher that X width in unix cli? I have tried

find -name *.jpg -exec mogrify -resize 800x800 -format jpg {} \;

but the problem is that resizes also the images that have width or height below from 800 pixels.

도움이 되었습니까?

해결책

I have found it. This is it:

find * -iname '*.jpg' -print0 | xargs -0 mogrify -resize 800x800\> -monitor -format jpg
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top