gpt4 book ai didi

php - 带有白色背景的 imagecreatetruecolor

转载 作者:IT王子 更新时间:2023-10-28 23:58:19 25 4
gpt4 key购买 nike

我很确定我需要使用 imagefilledrectangle 以获得白色背景而不是黑色背景...只是不确定如何。我已经尝试了几种方法。

$targetImage = imagecreatetruecolor($thumbw,$thumbh);
imagecopyresized($targetImage,$sourceImage,0,0,0,0,$thumbWidth,$thumbHeight,imagesx($sourceImage),imagesy($sourceImage));

最佳答案

更新(2020 年):请参阅下面的此答案以获得比图像填充更快的填充:https://stackoverflow.com/a/32580839/1005039

原创

来自PHP manual entry for imagefill :

$image = imagecreatetruecolor(100, 100);

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

关于php - 带有白色背景的 imagecreatetruecolor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8135271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com