Lines Matching refs:DST
27 $DST = imagecreatetruecolor(30,$cnt*45*2);
28 imagesavealpha($DST, true);
29 $C_trans = imagecolorallocatealpha($DST, 0, 0, 0, 127);
30 imagefill($DST, 0, 0, $C_trans);
35 $C_active = imagecolorallocate($DST, $COLOR['r'],$COLOR['g'],$COLOR['b']);
44 imagecopy($DST,$IN, 0,$base, 0,0, 30,30);
50 imagecopy($DST,$IN, 0,$base+45, 0,0, 30,30);
53 imagelayereffect($DST, IMG_EFFECT_OVERLAY);
54 imagefilledrectangle($DST, 0,$base+45, 30,$base+45+30, $C_active);
55 imagelayereffect($DST, IMG_EFFECT_NORMAL);
59 imagepng($DST,'pagetools-sprite.png');
60 imagedestroy($DST);