ConFoo Montreal 2026: Call for Papers

Voting

: eight plus zero?
(Example: nine)

The Note You're Voting On

Anonymous
16 years ago
Prepare photo for web

<?php
$im
= new Imagick($SrcFile);

$im->resizeImage ( $Width, $Height , Imagick::FILTER_QUADRATIC , 1 );

$im->normalizeImage();
$im->unsharpMaskImage(0 , 0.5 , 1 , 0.05);

$im->setImageFormat( "jpg" );
$im->setCompressionQuality(75);

$im->writeImage( $OutFile );

$im->removeImage();
?>

<< Back to user notes page

To Top