PHP Imagick JPEG Optimization PHP Imagick JPEG Optimization php php

PHP Imagick JPEG Optimization


Set the setImageCompressionQuality to a value of 70 and add these two lines after it.

$image->setImageFormat("jpg");$image->stripImage();

This will dramatically reduce the size of the images.