Lines Matching refs:Alpha

163     function setShadowProperties($XDistance = 1, $YDistance = 1, Color $color = null, $Alpha = 50, $Blur = 0) {
172 $Alpha,
1127 public function drawTextBox(Point $point1, Point $point2, $Text, $Angle = 0, Color $color = null, $Align = ALIGN_LEFT, ShadowProperties $shadowProperties = null, Color $backgroundColor = null, $Alpha = 100) {
1147 $shadowProperties, FALSE, $Alpha
1559 function drawArea($Data, $Serie1, $Serie2, Color $color, $Alpha = 50) {
1590 $Alpha
1897 function drawFilledCubicCurve(pData $data, $Accuracy = .1, $Alpha = 100, $AroundZero = FALSE) {
2044 $Alpha
2057 function drawFilledLineGraph($Data, $DataDescription, $Alpha = 100, $AroundZero = FALSE) {
2127 $Alpha
2144 $Alpha
2156 function drawOverlayBarGraph($Data, $DataDescription, $Alpha = 50) {
2184 $Alpha
2228 function drawBarGraph($Data, $DataDescription, $Alpha = 100) {
2259 if($Alpha == 100) {
2278 TRUE, $Alpha
2291 function drawStackedBarGraph($Data, $DataDescription, $Alpha = 50, $Contiguous = FALSE) {
2339 $Alpha
2735 function drawFilledRadar($Data, $DataDescription, $Alpha = 50, $BorderOffset = 10, $MaxValue = -1) {
2784 $Alpha
2899 function drawFromPNG($FileName, $X, $Y, $Alpha = 100) {
2900 $this->drawFromPicture(1, $FileName, $X, $Y, $Alpha);
2906 function drawFromGIF($FileName, $X, $Y, $Alpha = 100) {
2907 $this->drawFromPicture(2, $FileName, $X, $Y, $Alpha);
2913 function drawFromJPG($FileName, $X, $Y, $Alpha = 100) {
2914 $this->drawFromPicture(3, $FileName, $X, $Y, $Alpha);
2920 function drawFromPicture($PicType, $FileName, $X, $Y, $Alpha = 100) {
2935 imagecopymerge($this->canvas->getPicture(), $Raster, $X, $Y, 0, 0, $Width, $Height, $Alpha);