欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

imagick库下png转jpg

程序员文章站 2022-06-08 09:38:48
...
imagick库下png转jpg
<?php
$white=new Imagick();
$white->newImage($width, $height, "white");
$white->compositeimage($image, Imagick::COMPOSITE_OVER, 0, 0);
$white->setImageFormat('jpg');
$white->writeImage('image.jpg');

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