Lines Matching refs:this

76         $this->dirFonts = __DIR__ . "/fonts";
77 $this->dirImg = __DIR__ . "/images";
78 $this->backR = 255;
79 $this->backG = 255;
80 $this->backB = 255;
81 $this->fontR = 0;
82 $this->fontG = 0;
83 $this->fontB = 0;
84 $this->transparent = false;
85 $this->symbols = array(
215 $this->mathFonts = array(
413 $result[] = new TextExpression($extracts[$i], $this);
427 $symbols = $this->getSymbols();
428 $fontsMath = $this->getMathFonts();
429 $dirFonts = $this->getDirFonts();
434 $white = $this->getBackColor($img);
439 $white = $this->getBackColor($img);
444 $black = $this->getFontColor($img);
445 $white = $this->getBackColor($img);
452 $black = $this->getFontColor($img);
453 $white = $this->getBackColor($img);
465 $tmpBlack = $this->getFontColor($tmpImg);
466 $tmpWhite = $this->getBackColor($tmpImg);
499 $white = $this->getBackColor($img);
511 $tmpBlack = $this->getFontColor($tmpImg);
512 $tmpWhite = $this->getBackColor($tmpImg);
546 $white = $this->getBackColor($img);
554 } elseif ($this->isNumber($text)) {
570 $tmpBlack = $this->getFontColor($tmpImg);
571 $tmpWhite = $this->getBackColor($tmpImg);
606 $white = $this->getBackColor($img);
610 $white = $this->getBackColor($img);
627 } elseif ($this->isNumber($text)) {
643 $tmpBlack = $this->getFontColor($tmpImg);
644 $tmpWhite = $this->getBackColor($tmpImg);
680 $white = $this->getBackColor($img);
684 $white = $this->getBackColor($img);
712 $dirFonts = $this->getDirFonts();
722 $black = $this->getFontColor($img);
723 $white = $this->getBackColor($img);
739 $symbols = $this->getSymbols();
740 $fontsMath = $this->getMathFonts();
741 $dirFonts = $this->getDirFonts();
759 $black = $this->getFontColor($img);
760 $white = $this->getBackColor($img);
775 $image = $this->displaySymbol($style, $height);
798 $white = $this->getBackColor($result);
829 $black = $this->getFontColor($result);
830 $white = $this->getBackColor($result);
848 $this->backR = $R;
849 $this->backG = $G;
850 $this->backB = $B;
861 $this->fontR = $R;
862 $this->fontG = $G;
863 $this->fontB = $B;
873 $back = imagecolorallocate($img, $this->backR, $this->backG, $this->backB);
874 if($this->transparent) {
887 return imagecolorallocate($img, $this->fontR, $this->fontG, $this->fontB);
896 $this->dirFonts = $dirFonts;
904 return $this->dirFonts;
912 $this->dirImg = $dirImg;
920 return $this->dirImg;
928 $this->mathFonts = $mathFonts;
936 return $this->mathFonts;
944 $this->symbols = $symbols;
952 return $this->symbols;
960 $this->transparent = $transparent;
968 return $this->transparent;