resize many images with linux in two steps
1.-Install ImageMagick:
sudo apt-get install imagemagick
2.- Resize with the width that you want:
mogrify -resize 640 *.jpg
or with the height and width that you want
mogrify -resize 640×480! *.jpg
That's all folks!!
| The End |
sudo apt-get install imagemagick
2.- Resize with the width that you want:
mogrify -resize 640 *.jpg
or with the height and width that you want
mogrify -resize 640×480! *.jpg
That's all folks!!
| The End |

Comments
Post a Comment