亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
日韩午夜在线影院| 亚洲日穴在线视频| 日韩一区二区三区免费看| 欧美大片在线观看一区二区| 国产精品不卡在线观看| 精品无人码麻豆乱码1区2区| 欧美精品在线视频| 欧美成人aa大片| 亚洲图片激情小说| 国产一区亚洲一区| 亚洲综合久久久| 91蝌蚪porny九色| 中文字幕一区在线观看| 蓝色福利精品导航| 国产精品理论片| 紧缚捆绑精品一区二区| 亚洲日本乱码在线观看| 亚洲图片另类小说| 日韩美女一区二区三区| 一区二区三区资源| 成人免费毛片高清视频| 久久免费看少妇高潮| 热久久一区二区| 欧美日韩国产色站一区二区三区| 亚洲欧美日韩在线| 777久久久精品| 99精品黄色片免费大全| 国产欧美日韩三区| 国产盗摄视频一区二区三区| 久久影院午夜论| 九九九久久久精品| 成人av免费在线观看| 国产乱码精品1区2区3区| 亚洲mv在线观看| 久久综合精品国产一区二区三区 | 亚洲国产aⅴ成人精品无吗| 欧美日韩一区二区三区四区| 欧美性生活久久| 91原创在线视频| 色婷婷综合视频在线观看| 91美女在线看| 成人自拍视频在线| 99久久国产免费看| 不卡av在线网| 欧美一区二区视频网站| 精品欧美一区二区在线观看| 51精品国自产在线| 99精品黄色片免费大全| 国产激情一区二区三区| 久久综合九色欧美综合狠狠| 久久品道一品道久久精品| 欧美一区二区视频在线观看| 色老汉一区二区三区| 91性感美女视频| 欧美色图天堂网| 欧美日韩成人在线一区| 国产视频一区二区在线观看| 欧美一级片免费看| 亚洲色图视频免费播放| 麻豆91精品视频| 激情伊人五月天久久综合| 麻豆精品蜜桃视频网站| 九九久久精品视频| 亚洲一二三四区| 午夜精品福利一区二区蜜股av | 99精品视频在线免费观看| 91在线无精精品入口| 久久精品欧美一区二区三区不卡 | 久久成人免费网站| 国产成人综合亚洲网站| 色综合久久久久网| 精品国产一区二区精华| 一区二区三区高清不卡| 在线观看一区二区视频| 亚洲bt欧美bt精品777| 欧美日韩1234| 本田岬高潮一区二区三区| 中文字幕一区二区三区四区不卡 | 国产成人综合亚洲91猫咪| 欧美性色aⅴ视频一区日韩精品| 久久九九全国免费| 美女尤物国产一区| 欧美日韩视频不卡| 亚洲第一成年网| 欧美又粗又大又爽| 亚洲国产日日夜夜| 欧美三级资源在线| 亚洲午夜电影网| 欧美日韩国产区一| 美女一区二区在线观看| 在线播放91灌醉迷j高跟美女| 一区二区三区视频在线观看| 成人黄色综合网站| 亚洲狠狠丁香婷婷综合久久久| 国产成人在线观看免费网站| 一区二区三区在线视频播放| 国产片一区二区| 亚洲国产精品成人综合色在线婷婷| 精品视频色一区| 精品在线亚洲视频| 国产精品免费丝袜| 成人开心网精品视频| 国产精品久久久久影视| 亚洲黄色小说网站| 欧美色视频在线观看| 国产精品自在欧美一区| 中文字幕一区二区三区不卡在线| 日韩免费性生活视频播放| jiyouzz国产精品久久| 日本亚洲最大的色成网站www| 亚洲国产精品成人综合| 精品电影一区二区| 久久日一线二线三线suv| 8x8x8国产精品| 在线一区二区观看| 91丨九色丨国产丨porny| 国产高清精品网站| 国产91精品露脸国语对白| 日韩成人一级片| 麻豆精品新av中文字幕| 欧美bbbbb| 蓝色福利精品导航| 91久久精品一区二区二区| 毛片不卡一区二区| 激情综合一区二区三区| 蜜桃91丨九色丨蝌蚪91桃色| 丝袜美腿成人在线| 日本欧美一区二区在线观看| 首页综合国产亚洲丝袜| 蜜桃久久久久久久| 成人黄页毛片网站| 91黄色激情网站| 精品国产精品网麻豆系列 | 久久国产人妖系列| 成人一区二区三区在线观看| 成人一区在线观看| 欧美一区二区性放荡片| 久久久久久免费| 亚洲r级在线视频| 国产精品一品视频| 99精品视频一区| 日韩午夜在线观看视频| 亚洲精品中文在线观看| 亚洲制服丝袜在线| 国产精品一区二区三区网站| 在线免费观看日本欧美| 日韩欧美国产三级| 亚洲愉拍自拍另类高清精品| 老司机午夜精品99久久| 精品视频999| 亚洲精品免费在线观看| 国产揄拍国内精品对白| 欧美精品1区2区3区| 综合在线观看色| 久久99久久99| 欧美成人午夜电影| 舔着乳尖日韩一区| 成人精品国产免费网站| 丰满少妇在线播放bd日韩电影| 欧美日韩一卡二卡三卡| 日韩码欧中文字| 国产精品18久久久久| 日韩视频123| 久久99国产精品尤物| 日韩一区二区三区视频在线| 日日嗨av一区二区三区四区| 9191国产精品| 麻豆精品视频在线观看视频| 精品粉嫩超白一线天av| 丁香一区二区三区| 欧美激情在线免费观看| 一本一道久久a久久精品综合蜜臀| 3d动漫精品啪啪| 91在线一区二区| 欧美大胆一级视频| 激情综合网av| 中文字幕制服丝袜成人av| 色呦呦日韩精品| 婷婷久久综合九色综合绿巨人| 欧美一级xxx| 91在线小视频| 青青草原综合久久大伊人精品| 国产亚洲成aⅴ人片在线观看| 不卡欧美aaaaa| 五月开心婷婷久久| 国产午夜精品久久久久久久| 91网站黄www| 国产激情视频一区二区在线观看| 精品一区二区在线免费观看| 日韩小视频在线观看专区| 成人国产精品免费网站| 日韩精品成人一区二区在线| 久久精品亚洲一区二区三区浴池| a4yy欧美一区二区三区| 蜜臀91精品一区二区三区 | 亚洲成人av资源| 国产精品美女久久久久久久| 欧美一级黄色大片| 欧美剧在线免费观看网站 | 亚洲视频每日更新|