<?php include_once('thumbnail.inc.php'); $thumb = new Thumbnail('sample.jpg'); $thumb->resize(250,250); $thumb->cropFromCenter(100); $thumb->save('ile.jpg',100); //if you're using php 4 version $thumb->destruct(); ?>
<?php include_once('thumbnail.inc.php'); $thumb = new Thumbnail('gal.jpg'); $thumb->cropFromCenter(50); $thumb->save('file.jpg',100); ?>