php GD create a transparent png image

前端 未结 3 1034
Happy的楠姐
Happy的楠姐 2020-11-27 06:00

I\'m trying to create a transparent png image and layer various other pngs and jpgs to create a final png with transparency. I\'m having trouble creating my initial empty tr

3条回答
  •  抹茶落季
    2020-11-27 06:55

    Try to replace
    $col=imagecolorallocatealpha($image,255,255,255,127);
    with
    $col=imagecolorallocate($image,255,255,255);

    and try to uncomment imagefilledrectangle line.
    I can test this code - give me the pictures :)

提交回复
热议问题