PHP 8.5.0 Alpha 4 available for testing

Voting

: max(four, two)?
(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