http://www.white-hat-web-design.co.u...e-resizing.php
class ı indirelim önce

daha sonra resimlere uygulayalım.
//height width ayarları için

<?php
   include('SimpleImage.php');
   $image = new SimpleImage();
   $image->load('picture.jpg');
   $image->resize(250,400);
   $image->save('picture2.jpg');
?>

//sadece width ayarı için
<?php
   include('SimpleImage.php');
   $image = new SimpleImage();
   $image->load('picture.jpg');
   $image->resizeToWidth(250);
   $image->save('picture2.jpg');
?>