PHP 8.5.0 Alpha 4 available for testing

Voting

: three plus three?
(Example: nine)

The Note You're Voting On

spider at man dot net
13 years ago
<?php

/* Create new object */
$im = new Imagick( 'test.jpg' );

/* Scale down */
$im->liquidRescaleImage( 500, 200, 3, 25 );

/* Display */
header( 'Content-Type: image/jpg' );
echo
$im;

?>

<< Back to user notes page

To Top