Maison >php教程 >PHP源码 >imagick库下png转jpg

imagick库下png转jpg

PHP中文网
PHP中文网original
2016-06-01 14:33:011545parcourir

imagick库下png转jpg

<?php
$white=new Imagick();
$white->newImage($width, $height, "white");
$white->compositeimage($image, Imagick::COMPOSITE_OVER, 0, 0);
$white->setImageFormat(&#39;jpg&#39;);
$white->writeImage(&#39;image.jpg&#39;);

 以上就是imagick库下png转jpg的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn