Lines Matching refs:DST
29 $DST = imagecreatetruecolor(30,$cnt*45*2); variable
30 imagesavealpha($DST, true);
31 $C_trans = imagecolorallocatealpha($DST, 0, 0, 0, 127);
32 imagefill($DST, 0, 0, $C_trans);
37 $C_active = imagecolorallocate($DST, $COLOR['r'],$COLOR['g'],$COLOR['b']);
46 imagecopy($DST,$IN, 0,$base, 0,0, 30,30);
52 imagecopy($DST,$IN, 0,$base+45, 0,0, 30,30);
55 imagelayereffect($DST, IMG_EFFECT_OVERLAY);
56 imagefilledrectangle($DST, 0,$base+45, 30,$base+45+30, $C_active);
57 imagelayereffect($DST, IMG_EFFECT_NORMAL);
61 imagepng($DST,'pagetools-sprite.png');
62 imagedestroy($DST);