I\'m trying to re-save an already created JPEG as a progressive jpg.
Basically, on the front end I have some JS that crops an image, and outputs a base64 im
Try Imagick (ImageMagic Package) as shown in here : http://php.net/manual/en/imagick.setinterlacescheme.php
$image = new Imagick('image.jpg'); $image->thumbnailImage(500, 0); $image->setInterlaceScheme(Imagick::INTERLACE_PLANE); $image->writeImage('progressive.jpg');