문제

How I can convert an entire image folder of pixel art images to double size without blur pixels ? I try with mogrify but blurs the inside of images. ( border works)

도움이 되었습니까?

해결책

Usually to preserve pixels without blurring, you would use -scale or -sample. There are great examples and detailed explanations in the usage documentation.

mogrify pixels/*.png -scale 100x100 -path ./scale

pixel scale

mogrify pixels/*.png -sample 100x100 -path ./sample

pixel sample

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top