Home
last modified time | relevance | path

Searched refs:m_arColors (Results 1 – 2 of 2) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/
H A DColorTable.php20 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)) . // R
53 chr(($this->m_arColors[$i] & 0x0000FF00) >> 8) . // G
54 chr(($this->m_arColors[$i] & 0x00FF0000) >> 16); // B
69 $r2 = ($this->m_arColors[$i] & 0x000000FF);
70 $g2 = ($this->m_arColors[$i] & 0x0000FF00) >> 8;
71 $b2 = ($this->m_arColors[
[all...]
/plugin/photogallery/phpThumb/
H A Dphpthumb.gif.php382 public $m_arColors; variable in CGIFCOLORTABLE
390 unSet($this->m_arColors);
398 $this->m_arColors = array();
421 chr($this->m_arColors[ $i] & 0x000000FF) . // R
422 chr(($this->m_arColors[$i] & 0x0000FF00) >> 8) . // G
423 chr(($this->m_arColors[$i] & 0x00FF0000) >> 16); // B
437 chr(($this->m_arColors[$i] & 0x00FF0000) >> 16) . // B
439 chr($this->m_arColors[ $i] & 0x000000FF) . // R
458 $r2 = ($this->m_arColors[$i] & 0x000000FF);
459 $g2 = ($this->m_arColors[$i] & 0x0000FF00) >> 8;
[all …]