Posts by TruX • 1 point
2 posts
-
0
votes1
answer35
viewsQ: GD/PHP Add text from form / Transparent Background
<?php $image = imagecreatetruecolor(100, 100); //Fundo Transparente imagealphablending($image, false); $transparency = imagecolorallocatealpha($image, 0, 0, 0, 127); imagefill($image, 0, 0,…
-
0
votes1
answer155
viewsQ: Generate transparent image through a form
Hello. I want to create a form with one input field and the other as Submit. When you write something in the input field and click the Submit button an image will be generated through the PHP GD…