php背景图片怎么生成

发布时间:2020-06-10编辑:脚本学堂
本文介绍了php生成白色背景图片的一段代码,有关php gd库生成背景图片的方法,有需要的朋友参考下。

例子,在php中使用gd库中的函数,生成白色背景图片。
 

复制代码 代码示例:
<?php
$image = imagecreatetruecolor($imgWidth, $imgHeight);
$white = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $white);