I was to post about the same thing
PHP Code:
<?php
$filename = sprintf ("sig%d.png", rand (0, 9));
$image = imagecreatefrompng ($filename);
header ("Content-type: image/png");
imagepng ($image);
imagedestroy ($image);
?>
creditz to you Brian, of course
