Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. sudo apt-get install imagemagick
  2.  
  3. convert -resize 50% source.png dest.jpg
  4.  
  5. convert -resize 1024X768 source.png dest.jpg
  6.  
  7. sudo apt-get install imagemagick
  8.  
  9. mogrify -resize 50% *.png # keep image aspect ratio
  10. mogrify -resize 320x240 *.png # keep image aspect ratio
  11. mogrify -resize 320x240! *.png # don't keep image aspect ratio
  12. mogrify -resize x240 *.png # don't keep image aspect ratio
  13. mogrify -resize 320x *.png # don't keep image aspect ratio
  14.  
  15. mogrify -resize 320x240 *.jpg
  16.  
  17. mogrify -resize 320x240! *.jpg
  18.  
  19. sudo apt-get install imagemagick
  20.  
  21. mogrify -verbose -resize '40%' *.JPG
  22.  
  23. convert -resize 50% myfigure.png myfigure.jpg
  24.  
  25. convert myfigure.png -resize 200x100 myfigure.jpg
  26.  
  27. sudo apt-get install phatch
  28.  
  29. sudo add-apt-repository ppa:vfrico/stable
  30. sudo apt-get update
  31. sudo apt-get install pimagizer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement