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)
Asked
Active
Viewed 43 times
1 Answers
1
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
mogrify pixels/*.png -sample 100x100 -path ./sample

emcconville
- 23,800
- 4
- 50
- 66
-
I was searching the -sample option, thanks you. With -filter point on -scale for obtain same result than sample but it's more slow – gabrign May 07 '14 at 19:55