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
Try to replace $col=imagecolorallocatealpha($image,255,255,255,127); with $col=imagecolorallocate($image,255,255,255);
$col=imagecolorallocatealpha($image,255,255,255,127);
$col=imagecolorallocate($image,255,255,255);
and try to uncomment imagefilledrectangle line. I can test this code - give me the pictures :)
imagefilledrectangle