Looks like the default color of your image is white:
$source=imagecreatetruecolor(100, 100);
imagefilledrectangle($source, 0, 0, 100, 100, $white);
And your transparency is black:
imagecolortransparent($asd, $black);
Try making the transparency white.
amphetamachine
2010-05-08 21:22:42