亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? fpdf.php

?? WEBGAME源碼,有架設說明,只是非常簡單
?? PHP
?? 第 1 頁 / 共 4 頁
字號:
<?php/******************************************************************************** Software: FPDF                                                               ** Version:  1.52                                                               ** Date:     2003-12-30                                                         ** Author:   Olivier PLATHEY                                                    ** License:  Freeware                                                           **                                                                              ** You may use, modify and redistribute this software as you wish.              ********************************************************************************/if(!class_exists('FPDF')){define('FPDF_VERSION','1.52');class FPDF{//Private propertiesvar $page;               //current page numbervar $n;                  //current object numbervar $offsets;            //array of object offsetsvar $buffer;             //buffer holding in-memory PDFvar $pages;              //array containing pagesvar $state;              //current document statevar $compress;           //compression flagvar $DefOrientation;     //default orientationvar $CurOrientation;     //current orientationvar $OrientationChanges; //array indicating orientation changesvar $k;                  //scale factor (number of points in user unit)var $fwPt,$fhPt;         //dimensions of page format in pointsvar $fw,$fh;             //dimensions of page format in user unitvar $wPt,$hPt;           //current dimensions of page in pointsvar $w,$h;               //current dimensions of page in user unitvar $lMargin;            //left marginvar $tMargin;            //top marginvar $rMargin;            //right marginvar $bMargin;            //page break marginvar $cMargin;            //cell marginvar $x,$y;               //current position in user unit for cell positioningvar $lasth;              //height of last cell printedvar $LineWidth;          //line width in user unitvar $CoreFonts;          //array of standard font namesvar $fonts;              //array of used fontsvar $FontFiles;          //array of font filesvar $diffs;              //array of encoding differencesvar $images;             //array of used imagesvar $PageLinks;          //array of links in pagesvar $links;              //array of internal linksvar $FontFamily;         //current font familyvar $FontStyle;          //current font stylevar $underline;          //underlining flagvar $CurrentFont;        //current font infovar $FontSizePt;         //current font size in pointsvar $FontSize;           //current font size in user unitvar $DrawColor;          //commands for drawing colorvar $FillColor;          //commands for filling colorvar $TextColor;          //commands for text colorvar $ColorFlag;          //indicates whether fill and text colors are differentvar $ws;                 //word spacingvar $AutoPageBreak;      //automatic page breakingvar $PageBreakTrigger;   //threshold used to trigger page breaksvar $InFooter;           //flag set when processing footervar $ZoomMode;           //zoom display modevar $LayoutMode;         //layout display modevar $title;              //titlevar $subject;            //subjectvar $author;             //authorvar $keywords;           //keywordsvar $creator;            //creatorvar $AliasNbPages;       //alias for total number of pages/********************************************************************************                                                                              **                               Public methods                                 **                                                                              ********************************************************************************/function FPDF($orientation='P',$unit='mm',$format='A4'){    //Some checks    $this->_dochecks();    //Initialization of properties    $this->page=0;    $this->n=2;    $this->buffer='';    $this->pages=array();    $this->OrientationChanges=array();    $this->state=0;    $this->fonts=array();    $this->FontFiles=array();    $this->diffs=array();    $this->images=array();    $this->links=array();    $this->InFooter=false;    $this->lasth=0;    $this->FontFamily='';    $this->FontStyle='';    $this->FontSizePt=12;    $this->underline=false;    $this->DrawColor='0 G';    $this->FillColor='0 g';    $this->TextColor='0 g';    $this->ColorFlag=false;    $this->ws=0;    //Standard fonts    $this->CoreFonts=array('courier'=>'Courier','courierB'=>'Courier-Bold','courierI'=>'Courier-Oblique','courierBI'=>'Courier-BoldOblique',        'helvetica'=>'Helvetica','helveticaB'=>'Helvetica-Bold','helveticaI'=>'Helvetica-Oblique','helveticaBI'=>'Helvetica-BoldOblique',        'times'=>'Times-Roman','timesB'=>'Times-Bold','timesI'=>'Times-Italic','timesBI'=>'Times-BoldItalic',        'symbol'=>'Symbol','zapfdingbats'=>'ZapfDingbats');    //Scale factor    if($unit=='pt')        $this->k=1;    elseif($unit=='mm')        $this->k=72/25.4;    elseif($unit=='cm')        $this->k=72/2.54;    elseif($unit=='in')        $this->k=72;    else        $this->Error('Incorrect unit: '.$unit);    //Page format    if(is_string($format))    {        $format=strtolower($format);        if($format=='a3')            $format=array(841.89,1190.55);        elseif($format=='a4')            $format=array(595.28,841.89);        elseif($format=='a5')            $format=array(420.94,595.28);        elseif($format=='letter')            $format=array(612,792);        elseif($format=='legal')            $format=array(612,1008);        else            $this->Error('Unknown page format: '.$format);        $this->fwPt=$format[0];        $this->fhPt=$format[1];    }    else    {        $this->fwPt=$format[0]*$this->k;        $this->fhPt=$format[1]*$this->k;    }    $this->fw=$this->fwPt/$this->k;    $this->fh=$this->fhPt/$this->k;    //Page orientation    $orientation=strtolower($orientation);    if($orientation=='p' or $orientation=='portrait')    {        $this->DefOrientation='P';        $this->wPt=$this->fwPt;        $this->hPt=$this->fhPt;    }    elseif($orientation=='l' or $orientation=='landscape')    {        $this->DefOrientation='L';        $this->wPt=$this->fhPt;        $this->hPt=$this->fwPt;    }    else        $this->Error('Incorrect orientation: '.$orientation);    $this->CurOrientation=$this->DefOrientation;    $this->w=$this->wPt/$this->k;    $this->h=$this->hPt/$this->k;    //Page margins (1 cm)    $margin=28.35/$this->k;    $this->SetMargins($margin,$margin);    //Interior cell margin (1 mm)    $this->cMargin=$margin/10;    //Line width (0.2 mm)    $this->LineWidth=.567/$this->k;    //Automatic page break    $this->SetAutoPageBreak(true,2*$margin);    //Full width display mode    $this->SetDisplayMode('fullwidth');    //Compression    $this->SetCompression(true);}function SetMargins($left,$top,$right=-1){    //Set left, top and right margins    $this->lMargin=$left;    $this->tMargin=$top;    if($right==-1)        $right=$left;    $this->rMargin=$right;}function SetLeftMargin($margin){    //Set left margin    $this->lMargin=$margin;    if($this->page>0 and $this->x<$margin)        $this->x=$margin;}function SetTopMargin($margin){    //Set top margin    $this->tMargin=$margin;}function SetRightMargin($margin){    //Set right margin    $this->rMargin=$margin;}function SetAutoPageBreak($auto,$margin=0){    //Set auto page break mode and triggering margin    $this->AutoPageBreak=$auto;    $this->bMargin=$margin;    $this->PageBreakTrigger=$this->h-$margin;}function SetDisplayMode($zoom,$layout='continuous'){    //Set display mode in viewer    if($zoom=='fullpage' or $zoom=='fullwidth' or $zoom=='real' or $zoom=='default' or !is_string($zoom))        $this->ZoomMode=$zoom;    else        $this->Error('Incorrect zoom display mode: '.$zoom);    if($layout=='single' or $layout=='continuous' or $layout=='two' or $layout=='default')        $this->LayoutMode=$layout;    else        $this->Error('Incorrect layout display mode: '.$layout);}function SetCompression($compress){    //Set page compression    if(function_exists('gzcompress'))        $this->compress=$compress;    else        $this->compress=false;}function SetTitle($title){    //Title of document    $this->title=$title;}function SetSubject($subject){    //Subject of document    $this->subject=$subject;}function SetAuthor($author){    //Author of document    $this->author=$author;}function SetKeywords($keywords){    //Keywords of document    $this->keywords=$keywords;}function SetCreator($creator){    //Creator of document    $this->creator=$creator;}function AliasNbPages($alias='{nb}'){    //Define an alias for total number of pages    $this->AliasNbPages=$alias;}function Error($msg){    //Fatal error    die('<B>FPDF error: </B>'.$msg);}function Open(){    //Begin document    if($this->state==0)        $this->_begindoc();}function Close(){    //Terminate document    if($this->state==3)        return;    if($this->page==0)        $this->AddPage();    //Page footer    $this->InFooter=true;    $this->Footer();    $this->InFooter=false;    //Close page    $this->_endpage();    //Close document    $this->_enddoc();}function AddPage($orientation=''){    //Start a new page    if($this->state==0)        $this->Open();    $family=$this->FontFamily;    $style=$this->FontStyle.($this->underline ? 'U' : '');    $size=$this->FontSizePt;    $lw=$this->LineWidth;    $dc=$this->DrawColor;    $fc=$this->FillColor;    $tc=$this->TextColor;    $cf=$this->ColorFlag;    if($this->page>0)    {        //Page footer        $this->InFooter=true;        $this->Footer();        $this->InFooter=false;        //Close page        $this->_endpage();    }    //Start new page    $this->_beginpage($orientation);    //Set line cap style to square    $this->_out('2 J');    //Set line width    $this->LineWidth=$lw;    $this->_out(sprintf('%.2f w',$lw*$this->k));    //Set font    if($family)        $this->SetFont($family,$style,$size);    //Set colors    $this->DrawColor=$dc;    if($dc!='0 G')        $this->_out($dc);    $this->FillColor=$fc;    if($fc!='0 g')        $this->_out($fc);    $this->TextColor=$tc;    $this->ColorFlag=$cf;    //Page header    $this->Header();    //Restore line width    if($this->LineWidth!=$lw)    {        $this->LineWidth=$lw;        $this->_out(sprintf('%.2f w',$lw*$this->k));    }    //Restore font    if($family)        $this->SetFont($family,$style,$size);    //Restore colors    if($this->DrawColor!=$dc)    {        $this->DrawColor=$dc;        $this->_out($dc);    }    if($this->FillColor!=$fc)    {        $this->FillColor=$fc;        $this->_out($fc);    }    $this->TextColor=$tc;    $this->ColorFlag=$cf;}function Header(){    //To be implemented in your own inherited class}function Footer(){    //To be implemented in your own inherited class}function PageNo(){    //Get current page number    return $this->page;}function SetDrawColor($r,$g=-1,$b=-1){    //Set color for all stroking operations    if(($r==0 and $g==0 and $b==0) or $g==-1)        $this->DrawColor=sprintf('%.3f G',$r/255);    else        $this->DrawColor=sprintf('%.3f %.3f %.3f RG',$r/255,$g/255,$b/255);    if($this->page>0)        $this->_out($this->DrawColor);}function SetFillColor($r,$g=-1,$b=-1){    //Set color for all filling operations    if(($r==0 and $g==0 and $b==0) or $g==-1)        $this->FillColor=sprintf('%.3f g',$r/255);    else        $this->FillColor=sprintf('%.3f %.3f %.3f rg',$r/255,$g/255,$b/255);    $this->ColorFlag=($this->FillColor!=$this->TextColor);    if($this->page>0)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本午夜一区二区| 亚洲精品福利视频网站| 99国产精品久久久| 成人福利在线看| 在线观看一区不卡| 欧美日韩精品综合在线| 欧美成人aa大片| 欧美绝品在线观看成人午夜影视| 91麻豆精品国产91久久久资源速度| 欧美精品久久天天躁| 极品尤物av久久免费看| 日精品一区二区三区| 日韩国产在线一| 精品国产三级电影在线观看| 337p亚洲精品色噜噜噜| 经典三级视频一区| 精品久久国产97色综合| 狠狠色狠狠色综合系列| 风间由美一区二区三区在线观看| 91小视频在线观看| 国产嫩草影院久久久久| 日日夜夜精品免费视频| 日本一区二区成人在线| 日韩电影在线免费看| 久久欧美一区二区| 亚洲电影在线播放| 一区二区在线看| 中文字幕一区免费在线观看| 免费欧美在线视频| 久久久一区二区| 69久久夜色精品国产69蝌蚪网| 激情综合五月婷婷| 免费久久99精品国产| 性感美女久久精品| 视频一区二区中文字幕| 亚洲午夜免费电影| 自拍偷拍国产精品| 色婷婷一区二区三区四区| 国内精品伊人久久久久影院对白| 久久在线免费观看| 成人97人人超碰人人99| 成人动漫一区二区在线| 成人免费毛片高清视频| 亚洲欧美日韩久久| 精品国产百合女同互慰| 91麻豆精品国产自产在线| 欧美高清你懂得| 久久伊人蜜桃av一区二区| 久久精品视频在线看| 99久久精品国产一区| proumb性欧美在线观看| 婷婷综合久久一区二区三区| 欧美精品一区二区三区蜜桃 | 91丨九色丨黑人外教| 91麻豆免费看片| 99re成人精品视频| 欧美电影在线免费观看| 日本一区二区三区视频视频| 国产精品色眯眯| 欧美激情综合在线| 中文字幕av免费专区久久| 欧美极品美女视频| 久久精品久久久精品美女| 亚洲精品乱码久久久久久| 青青草精品视频| 在线观看欧美精品| 国产精品国模大尺度视频| 欧美一区二区性放荡片| 欧美体内she精高潮| 成人av资源站| 久久综合九色综合97婷婷| 亚洲乱码中文字幕| 天堂一区二区在线| 六月丁香综合在线视频| 在线观看一区二区精品视频| 日韩成人免费电影| 日本伊人精品一区二区三区观看方式| 亚洲影视资源网| 欧美一区二区三区系列电影| 欧美国产一区视频在线观看| 亚洲曰韩产成在线| 国产一区二区美女诱惑| 欧美日韩一区二区三区四区五区| 日韩电影免费一区| 欧美日韩在线不卡| 日韩一区中文字幕| 99久久国产综合精品麻豆| 久久久久久久综合| 国产福利一区二区三区视频| 狠狠v欧美v日韩v亚洲ⅴ| 99国产欧美另类久久久精品| 日韩一区二区三区观看| 欧美一区二区高清| 亚洲人精品午夜| 欧美精品一二三| 亚洲欧美激情小说另类| 不卡的av在线| 一二三四社区欧美黄| 91美女片黄在线观看| 一区二区三区在线播放| 91蝌蚪porny九色| 日韩和欧美的一区| 717成人午夜免费福利电影| 久久福利视频一区二区| 久久精品夜色噜噜亚洲aⅴ| 高清不卡一区二区| 国产午夜精品一区二区三区嫩草| 色综合一区二区三区| 欧美视频一区二区在线观看| 91精品国产福利在线观看| 久久99国产精品久久99| 国产精品三级久久久久三级| 99久久综合色| 一区二区日韩av| 欧美视频一区二区三区在线观看| 欧美一区二区三区四区视频 | 91网上在线视频| 日本亚洲欧美天堂免费| 国产日韩欧美在线一区| 色噜噜久久综合| 国产一区二区三区蝌蚪| 懂色av一区二区三区免费看| 欧美电视剧免费全集观看| 国内精品国产成人| 洋洋成人永久网站入口| 精品久久免费看| 精品国精品自拍自在线| 欧洲国产伦久久久久久久| av激情综合网| 成人高清视频在线| 国产成人精品aa毛片| 国产精品18久久久久久久久| 国产成人亚洲综合a∨猫咪| 欧美在线三级电影| 99久久精品免费| 成人蜜臀av电影| 国产美女一区二区三区| 99在线热播精品免费| 亚洲成人动漫在线观看| 国产人成亚洲第一网站在线播放| 制服丝袜中文字幕亚洲| 久久一日本道色综合| 日韩久久精品一区| 国产精品嫩草影院com| 91麻豆精品国产91久久久更新时间| 欧美四级电影网| 欧美tickling挠脚心丨vk| 欧美大片一区二区三区| 久久嫩草精品久久久久| 26uuu亚洲| 亚洲一区在线看| 亚洲人成精品久久久久| 亚洲一区二区视频在线| 免费在线成人网| 亚洲高清免费一级二级三级| 国产精品久久精品日日| 国产精品伦一区二区三级视频| 亚洲在线观看免费视频| 精品一区二区免费在线观看| 亚欧色一区w666天堂| 久久se精品一区精品二区| 色婷婷国产精品| 国产欧美日韩激情| 丝袜a∨在线一区二区三区不卡| 蜜臀91精品一区二区三区| 国产一区二区三区四区在线观看| 成人国产精品免费观看视频| 欧美大片免费久久精品三p| 亚洲va欧美va国产va天堂影院| 狠狠色狠狠色综合| 日韩免费观看高清完整版| 艳妇臀荡乳欲伦亚洲一区| 成人免费不卡视频| 69堂成人精品免费视频| 亚洲日本va在线观看| 成人激情小说网站| 国产精品女人毛片| 99久久久国产精品免费蜜臀| 久久综合久久久久88| 国产九色sp调教91| 国产精品久久久久久久久免费樱桃| 狠狠色丁香久久婷婷综合_中 | 国产欧美精品日韩区二区麻豆天美| 日韩av在线播放中文字幕| 精品少妇一区二区三区日产乱码| 精品综合久久久久久8888| 欧美一级在线视频| 国内精品视频一区二区三区八戒| 日韩精品专区在线| 欧美日韩综合色| 久久伊人中文字幕| 成人免费观看男女羞羞视频| 国产精品 欧美精品| 国产精品视频线看| 色婷婷亚洲一区二区三区| 最新国产成人在线观看| 欧美亚洲动漫制服丝袜| 亚洲专区一二三| 欧美久久一二区| 国产成人综合网站|