php基于GD图库生成白色背景图

在php制作海报的过程需要一张背景图然后在背景图上面涂鸦、贴图等。

$output_file = 'abc.png';
if (!file_exists($output_file)){
    //宽高为375:651
    $image = imagecreatetruecolor(375, 651);
    //白色背景
    $white = imagecolorallocate($image, 255, 255, 255);
    //填充背景
    imagefill($image, 0, 0, $white);
    //生成图片
    imagepng($image,$output_file);
    //销毁释放
    imagedestroy($image);
}


评论/留言