Hi, was curious in getting a png to jpg script.. either having someone from here create it and implement it, or if there is one out there I can implement into a site.. Does anyone have any knowledge on png to jpg?
you can use below function to convert the image from png to jpg function png2jpg($originalFile, $outputFile, $quality) { $image = imagecreatefrompng($originalFile); imagejpeg($image, $outputFile, $quality); imagedestroy($image); } For more information check below link : http://www.php.net/manual/en/imagick.setimageformat.php