PHP 8.5.0 Beta 1 available for testing

Voting

: max(four, nine)?
(Example: nine)

The Note You're Voting On

hayvanAdam
17 years ago
save progressive jpeg

<?php

$image
= new Imagick('image.jpg');
$image->thumbnailImage(500, 0);

$image->setInterlaceScheme(Imagick::INTERLACE_PLANE);

$image->writeImage('progressive.jpg');

?>

<< Back to user notes page

To Top