Lines Matching refs:DST
27 $DST = imagecreatetruecolor(30,$cnt*45*2); variable
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']);
45 imagecopy($DST,$IN, 0,$base, 0,0, 30,30);
51 imagecopy($DST,$IN, 0,$base+45, 0,0, 30,30);
54 imagelayereffect($DST, IMG_EFFECT_OVERLAY);
55 imagefilledrectangle($DST, 0,$base+45, 30,$base+45+30, $C_active);
56 imagelayereffect($DST, IMG_EFFECT_NORMAL);
61 imagepng($DST,'pagetools-sprite.png');
62 imagedestroy($DST);