Searched refs:m_arColors (Results 1 – 2 of 2) sorted by relevance
20 var $m_arColors; variable in Mpdf\\Gif\\ColorTable 25 unset($this->m_arColors);31 $this->m_arColors = [];39 $this->m_arColors[] = (ord($rgb[2]) << 16) + (ord($rgb[1]) << 8) + ord($rgb[0]);52 chr(($this->m_arColors[$i] & 0x000000FF)) . // R53 chr(($this->m_arColors[$i] & 0x0000FF00) >> 8) . // G54 chr(($this->m_arColors[$i] & 0x00FF0000) >> 16); // B69 $r2 = ($this->m_arColors[$i] & 0x000000FF);70 $g2 = ($this->m_arColors[$i] & 0x0000FF00) >> 8;71 $b2 = ($this->m_arColors[[all...]
382 public $m_arColors; variable in CGIFCOLORTABLE390 unSet($this->m_arColors);398 $this->m_arColors = array();421 chr($this->m_arColors[ $i] & 0x000000FF) . // R422 chr(($this->m_arColors[$i] & 0x0000FF00) >> 8) . // G423 chr(($this->m_arColors[$i] & 0x00FF0000) >> 16); // B437 chr(($this->m_arColors[$i] & 0x00FF0000) >> 16) . // B439 chr($this->m_arColors[ $i] & 0x000000FF) . // R458 $r2 = ($this->m_arColors[$i] & 0x000000FF);459 $g2 = ($this->m_arColors[$i] & 0x0000FF00) >> 8;[all …]