Lines Matching refs:info

2420             $info=$this->_parsejpg($file);
2422 $info=$this->_parsepng($file);
2429 $info=$this->$mtd($file);
2432 $info['i']=count($this->images)+1;
2433 $this->images[$file]=$info;
2436 $info=$this->images[$file];
2442 $w=$info['w']/$this->k;
2443 $h=$info['h']/$this->k;
2447 $w=$h*$info['w']/$info['h'];
2451 $h=$w*$info['h']/$info['w'];
2454 …2f %.2f cm /I%d Do Q',$w*$this->k,$h*$this->k,$x*$this->k,($this->h-($y+$h))*$this->k,$info['i']));
2683 foreach ($this->FontFiles as $file=>$info) {
2697 if(!$compressed && isset($info['length2'])) {
2703 if($header && ord($font{$info['length1']})==128) {
2705 $font=substr($font,0,$info['length1']).substr($font,$info['length1']+6);
2714 $this->_out('/Length1 '.$info['length1']);
2715 if(isset($info['length2'])) {
2716 $this->_out('/Length2 '.$info['length2'].' /Length3 0');
2782 while (list($file,$info) = each($this->images)) {
2787 $this->_out('/Width '.$info['w']);
2788 $this->_out('/Height '.$info['h']);
2789 if ($info['cs']=='Indexed') {
2790 …$this->_out('/ColorSpace [/Indexed /DeviceRGB '.(strlen($info['pal'])/3-1).' '.($this->n+1).' 0 R]…
2792 $this->_out('/ColorSpace /'.$info['cs']);
2793 if($info['cs']=='DeviceCMYK') {
2797 $this->_out('/BitsPerComponent '.$info['bpc']);
2798 if (isset($info['f'])) {
2799 $this->_out('/Filter /'.$info['f']);
2802 if(isset($info['parms'])) {
2803 $this->_out($info['parms']);
2806 if(isset($info['trns']) && is_array($info['trns'])) {
2808 for ($i=0;$i<count($info['trns']);$i++) {
2809 $trns.=$info['trns'][$i].' '.$info['trns'][$i].' ';
2814 $this->_out('/Length '.strlen($info['data']).'>>');
2815 $this->_putstream($info['data']);
2820 if ($info['cs']=='Indexed') {
2822 $pal=($this->compress) ? gzcompress($info['pal']) : $info['pal'];