PHP 8.5.0 Alpha 2 available for testing

Voting

: five minus zero?
(Example: nine)

The Note You're Voting On

barclay[dot]loftus[at]gmail.com
17 years ago
Another note about image output. For jpeg images, the quality is adjusted by Imagick::setCompressionQuality().

<?php
$img
->setCompressionQuality(90);
$img->setImageFormat('jpeg');
header('Content-type: image/jpg');
echo
$img;
?>

<< Back to user notes page

To Top