Sophie

Sophie

distrib > Mandriva > 2008.1 > i586 > by-pkgid > 16fb2a283addc33cea66fbd55e193423 > files > 10

php-imagick-2.1.1-1mdv2008.1.i586.rpm

<?php
 
/*
	A simple example demonstrate thumbnail creation.
*/ 
 
/* Create the Imagick object */
$im = new Imagick();
 
/* Read the image file */
$im->readImage( '/tmp/test.png' );
 
/* Thumbnail the image ( width 100, preserve dimensions ) */
$im->thumbnailImage( 100, null );
 
/* Write the thumbail to disk */
$im->writeImage( '/tmp/th_test.png' );
 
/* Free resources associated to the Imagick object */
$im->destroy();
 
?>