how to do this without magickwand....please

MagickWand for PHP is an object-oriented PHP interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning MagickWand for PHP.
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

To resize an image from the command line is quite simple. Say you want your image to be 640x480 while retaining the aspect ratio (its done automatically):
  • convert image.jpg -resize 640x480 /tmp/image.jpg
Post Reply