Есть ли способ преобразовать шестнадцатеричный цвет (#fffff) в маленькое изображение .GIF на лету с помощью PHP?
....
<?php // create the image $im = imagecreatetruecolor(100, 100); // fill the image with the color you want imagefilledrectangle($im, 0, 0, 99, 99, 0xFFFFFF); // set the headers and output the image header('Content-Type: image/gif'); imagegif($im); imagedestroy($im); ?>
http://www.php.net/manual/en/function.imagegif.php