Lines Matching refs:Height
1440 $Height = $Positions[3] - $Positions[7]; $YOffset = $YPos - 4;
2198 $Height = $Positions[3] - $Positions[7];
2201 $YOffset = $Height;
2204 { $YOffset = $Height; $XOffset = -$Width; }
2982 function drawCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) argument
2984 if ( $Width == 0 ) { $Width = $Height; }
2990 $Step = 360 / (2 * 3.1418 * max($Width,$Height));
2994 $X = cos($i*3.1418/180) * $Height + $Xc;
3001 function drawFilledCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) argument
3003 if ( $Width == 0 ) { $Width = $Height; }
3009 $Step = 360 / (2 * 3.1418 * max($Width,$Height));
3013 $X1 = cos($i*3.1418/180) * $Height + $Xc;
3015 $X2 = cos((180-$i)*3.1418/180) * $Height + $Xc;
3021 if ( ($Y1-1) > $Yc - max($Width,$Height) )
3027 function drawEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) argument
3028 { $this->drawCircle($Xc,$Yc,$Height,$R,$G,$B,$Width); }
3031 function drawFilledEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) argument
3032 { $this->drawFilledCircle($Xc,$Yc,$Height,$R,$G,$B,$Width); }
3125 $Height = $Infos[1];
3130 imagecopymerge($this->Picture,$Raster,$X,$Y,0,0,$Width,$Height,$Alpha);
3178 $Height = $this->YSize+2*$Size;
3180 $Resampled = imagecreatetruecolor($Width,$Height);
3182 imagefilledrectangle($Resampled,0,0,$Width,$Height,$C_Background);
3188 $this->YSize = $Height;