<?php
header('Content-type: image/png');
$img = imagecreatefrompng('lamp.png');
imagecolorallocate($img, 200, 200, 200);
imagealphablending($img, true); // setting alpha blending on
imagesavealpha($img, true); // save alphablending setting (important)
imagepng($img);
imagedestroy($img);
header('Content-type: image/png');
$img = imagecreatefrompng('lamp.png');
imagecolorallocate($img, 200, 200, 200);
imagealphablending($img, true); // setting alpha blending on
imagesavealpha($img, true); // save alphablending setting (important)
imagepng($img);
imagedestroy($img);
No comments:
Post a Comment