php – imagescreatetruecolor与白色背景

前端之家收集整理的这篇文章主要介绍了php – imagescreatetruecolor与白色背景前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很确定我需要使用imagefilledrectangle为了得到一个白色的背景,而不是黑色在这…只是不知道如何.我试过几种方法.
$targetImage = imagecreatetruecolor($thumbw,$thumbh);
imagecopyresized($targetImage,$sourceImage,$thumbWidth,$thumbHeight,imagesx($sourceImage),imagesy($sourceImage));
PHP manual entry for imagefill
$image = imagecreatetruecolor(100,100);

// set background to white
$white = imagecolorallocate($image,255,255);
imagefill($image,$white);

猜你在找的PHP相关文章