imagesx($im)-$a) { $b+=$c_h; $c=0; } } } if(!isset($f)) $f=1; if(!isset($s)) $s=4; if(!isset($r1)) $r1=0xff; if(!isset($g1)) $g1=0xff; if(!isset($b1)) $b1=0xff; if(!isset($r2)) $r2=0x44; if(!isset($g2)) $g2=0x66; if(!isset($b2)) $b2=0x88; $r3=$r2-32; $g3=$g2-32; $b3=$b2-32; if($r3<0) $r3=0; if($g3<0) $g3=0; if($b3<0) $b3=0; if ($nfo) { if(!file_exists('nfo/'.$nfo.'.nfo')) { $txt[0]="ÚÄÄÄÄÄÄÄÄÄ¿ "; $txt[1]="³WRONG URL³ "; $txt[2]="ÀÄÄÄÄÄÄÄÄÄÙ "; $s=0; $f=2; } else $txt=file('nfo/'.$nfo.'.nfo'); } elseif ($results) { if(!file_exists('results/'.$results.'_'.$when.'.txt')) { $txt[0]="ÚÄÄÄÄÄÄÄÄÄ¿ "; $txt[1]="³WRONG URL³ "; $txt[2]="ÀÄÄÄÄÄÄÄÄÄÙ "; $s=0; $f=2; } else $txt=file('results/'.$results.'_'.$when.'.txt'); } elseif ($othernfo) { if(!file_exists('othernfo/'.$othernfo.'.nfo')) { $txt[0]="ÚÄÄÄÄÄÄÄÄÄ¿ "; $txt[1]="³WRONG URL³ "; $txt[2]="ÀÄÄÄÄÄÄÄÄÄÙ "; $s=0; $f=2; } else $txt=file('othernfo/'.$othernfo.'.nfo'); } else {} //foreach($txt as &$v) $v = wordwrap($v,100,"\n",1); if(!file_exists("gfx/fnt".$f.".png")) $f=1; $txt[count($txt)-1].=chr(13).chr(10); $fnt=imagecreatefrompng("gfx/fnt".$f.".png"); $c_w=imagesx($fnt)/16; $c_h=imagesy($fnt)/16; $fc1=imagecolorexact($fnt,0,0,0); $fc2=imagecolorexact($fnt,160,160,160); imagecolortransparent($fnt,$fc1); $nbr=count($txt); $max=0; for($i=0;$i<$nbr;$i++) { $len=strlen(rtrim($txt[$i])); if($len>$max) $max=$len; } $i_w=$max*$c_w+$s; $i_h=$nbr*$c_h+$s+10; $im=imagecreate($i_w,$i_h); $c1=imagecolorallocate($im,$r2,$g2,$b2); $c2=imagecolorallocate($im,$r3,$g3,$b3); imagefill($im,0,0,$c1); //imagecolortransparent($im,$c1); imagefilledrectangle($im,0,$i_h-9,$i_w,$i_h,$c2); for($i=0;$i<$nbr;$i++) { $len=strlen($txt[$i]); for($j=0;$j<$len+1;$j++) { $chr=ord($txt[$i]{$j}); if($chr==9) $chr=32; $x=$chr%16*$c_w; $y=($chr-$chr%16)/16*$c_h; imagecolorset($fnt,$fc2,$r3,$g3,$b3); imagecopymerge($im,$fnt,$j*$c_w+$s,$i*$c_h+$s,$x,$y,$c_w,$c_h,100); imagecolorset($fnt,$fc2,$r1,$g1,$b1); imagecopymerge($im,$fnt,$j*$c_w,$i*$c_h,$x,$y,$c_w,$c_h,100); } } $te=getmicrotime()-$ts; list($s,$ms)=explode(".",$te); $t=$s.".".substr($ms,0,3); write("generated by pouet lobstergod REZ! (".$t."s)",1,$i_h-7,$r3,$g3,$b3); header("Content-type: image/png"); imagepng($im); ?>