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

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

?? fpdf.php

?? asterisk用 的voip記費軟件
?? PHP
?? 第 1 頁 / 共 3 頁
字號:
<?php/******************************************************************************** Logiciel : FPDF                                                              ** Version :  1.52                                                              ** Date :     30/12/2003                                                        ** Auteur :   Olivier PLATHEY                                                   ** Licence :  Freeware                                                          **                                                                              ** Vous pouvez utiliser et modifier ce logiciel comme vous le souhaitez.        ********************************************************************************/if(!class_exists('FPDF')){define('FPDF_VERSION','1.52');class FPDFcd {//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)		$this->_out($this->FillColor);}function SetTextColor($r,$g=-1,$b=-1){	//Set color for text	if(($r==0 and $g==0 and $b==0) or $g==-1)		$this->TextColor=sprintf('%.3f g',$r/255);	else		$this->TextColor=sprintf('%.3f %.3f %.3f rg',$r/255,$g/255,$b/255);	$this->ColorFlag=($this->FillColor!=$this->TextColor);}function GetStringWidth($s){	//Get width of a string in the current font	$s=(string)$s;	$cw=&$this->CurrentFont['cw'];	$w=0;	$l=strlen($s);	for($i=0;$i<$l;$i++)		$w+=$cw[$s{$i}];	return $w*$this->FontSize/1000;}function SetLineWidth($width){	//Set line width	$this->LineWidth=$width;	if($this->page>0)		$this->_out(sprintf('%.2f w',$width*$this->k));}function Line($x1,$y1,$x2,$y2){	//Draw a line	$this->_out(sprintf('%.2f %.2f m %.2f %.2f l S',$x1*$this->k,($this->h-$y1)*$this->k,$x2*$this->k,($this->h-$y2)*$this->k));}function Rect($x,$y,$w,$h,$style=''){	//Draw a rectangle	if($style=='F')		$op='f';	elseif($style=='FD' or $style=='DF')		$op='B';	else		$op='S';	$this->_out(sprintf('%.2f %.2f %.2f %.2f re %s',$x*$this->k,($this->h-$y)*$this->k,$w*$this->k,-$h*$this->k,$op));}function AddFont($family,$style='',$file=''){	//Add a TrueType or Type1 font	$family=strtolower($family);	if($family=='arial')		$family='helvetica';	$style=strtoupper($style);	if($style=='IB')		$style='BI';	if(isset($this->fonts[$family.$style]))		$this->Error('Font already added: '.$family.' '.$style);	if($file=='')		$file=str_replace(' ','',$family).strtolower($style).'.php';	if(defined('FPDF_FONTPATH'))		$file=FPDF_FONTPATH.$file;	include($file);	if(!isset($name))		$this->Error('Could not include font definition file');	$i=count($this->fonts)+1;	$this->fonts[$family.$style]=array('i'=>$i,'type'=>$type,'name'=>$name,'desc'=>$desc,'up'=>$up,'ut'=>$ut,'cw'=>$cw,'enc'=>$enc,'file'=>$file);	if($diff)	{		//Search existing encodings		$d=0;		$nb=count($this->diffs);		for($i=1;$i<=$nb;$i++)			if($this->diffs[$i]==$diff)			{				$d=$i;				break;			}		if($d==0)		{			$d=$nb+1;			$this->diffs[$d]=$diff;		}		$this->fonts[$family.$style]['diff']=$d;	}	if($file)	{		if($type=='TrueType')			$this->FontFiles[$file]=array('length1'=>$originalsize);		else			$this->FontFiles[$file]=array('length1'=>$size1,'length2'=>$size2);	}}function SetFont($family,$style='',$size=0){	//Select a font; size given in points	global $fpdf_charwidths;	$family=strtolower($family);	if($family=='')		$family=$this->FontFamily;	if($family=='arial')		$family='helvetica';	elseif($family=='symbol' or $family=='zapfdingbats')		$style='';	$style=strtoupper($style);	if(is_int(strpos($style,'U')))	{		$this->underline=true;		$style=str_replace('U','',$style);	}	else		$this->underline=false;	if($style=='IB')		$style='BI';	if($size==0)		$size=$this->FontSizePt;	//Test if font is already selected	if($this->FontFamily==$family and $this->FontStyle==$style and $this->FontSizePt==$size)		return;	//Test if used for the first time	$fontkey=$family.$style;	if(!isset($this->fonts[$fontkey]))	{		//Check if one of the standard fonts		if(isset($this->CoreFonts[$fontkey]))		{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
777午夜精品视频在线播放| 国产精品久99| 91蝌蚪国产九色| 热久久免费视频| 亚洲视频一区二区免费在线观看| 欧美中文一区二区三区| 日本精品一区二区三区四区的功能| 亚洲成人手机在线| 欧美一区二区三区免费在线看| 成人少妇影院yyyy| 国产传媒欧美日韩成人| 在线观看三级视频欧美| 日韩亚洲欧美综合| 亚洲精品菠萝久久久久久久| 欧美日韩精品专区| 精品亚洲porn| 亚洲欧洲另类国产综合| 欧美日韩国产小视频在线观看| 久久精品国产一区二区| 国产午夜精品一区二区三区嫩草| 91免费国产视频网站| 亚洲成人免费视| 日韩美女在线视频| gogo大胆日本视频一区| 性欧美大战久久久久久久久| 久久蜜桃av一区精品变态类天堂 | 欧美性大战久久| 日韩电影在线观看一区| 久久久久久久久99精品| 色婷婷av一区二区三区之一色屋| 日韩成人精品在线观看| 中文字幕第一区二区| 欧美日本一区二区三区四区| 国产高清不卡一区| 亚洲成在人线在线播放| 国产性做久久久久久| 欧美日韩免费视频| 国产91在线观看丝袜| 亚洲成人7777| 国产欧美日韩精品a在线观看| 91久久国产最好的精华液| 精品亚洲国产成人av制服丝袜| 亚洲视频狠狠干| 欧美不卡激情三级在线观看| 91免费在线视频观看| 久久av资源站| 亚洲线精品一区二区三区| 日本一区二区三区国色天香| 91麻豆精品91久久久久同性| 成人福利视频网站| 日韩av中文在线观看| 亚洲人123区| 欧美精品一区二区三区四区 | 色婷婷久久久综合中文字幕 | 久热成人在线视频| 亚洲欧美福利一区二区| 久久伊人中文字幕| 欧美日韩精品系列| 91免费版在线| 国产精品888| 蜜桃视频第一区免费观看| 亚洲色图另类专区| 国产人久久人人人人爽| 69堂亚洲精品首页| 在线观看不卡一区| 成人性生交大片免费看中文网站| 日韩成人伦理电影在线观看| 亚洲精品国久久99热| 欧美激情综合五月色丁香小说| 日韩一区二区三区四区 | 欧美成人精精品一区二区频| 在线观看av一区二区| av在线不卡免费看| 韩日欧美一区二区三区| 日本午夜一区二区| 亚洲高清一区二区三区| 亚洲日本丝袜连裤袜办公室| 欧美激情一区二区三区不卡| 欧美精品一区视频| 欧美成人精品3d动漫h| 91精品国产乱码久久蜜臀| 欧美亚洲一区二区在线观看| 91在线播放网址| 成人va在线观看| 国产乱一区二区| 国产在线麻豆精品观看| 精品一区精品二区高清| 免费不卡在线视频| 日韩高清欧美激情| 日韩精品国产精品| 午夜精品成人在线| 午夜伦欧美伦电影理论片| 亚洲国产精品天堂| 亚洲福利视频一区| 亚洲超碰精品一区二区| 亚洲成人一二三| 丝袜美腿亚洲综合| 日韩精品亚洲一区二区三区免费| 午夜精品一区在线观看| 天天免费综合色| 天天操天天干天天综合网| 午夜av一区二区三区| 婷婷久久综合九色综合绿巨人| 亚洲高清免费在线| 五月天网站亚洲| 日韩有码一区二区三区| 日本不卡视频在线| 麻豆一区二区三| 国产一区福利在线| 国产成人在线影院 | 欧美老肥妇做.爰bbww| 欧美羞羞免费网站| 欧美日韩亚洲另类| 69久久夜色精品国产69蝌蚪网| 51午夜精品国产| 日韩一二三区视频| 久久久久免费观看| 国产欧美日本一区二区三区| 中文字幕欧美日本乱码一线二线| 1区2区3区欧美| 亚洲免费伊人电影| 婷婷久久综合九色综合绿巨人| 日本不卡高清视频| 国产精品中文字幕日韩精品| 国产aⅴ精品一区二区三区色成熟| 国产成人免费9x9x人网站视频| 99久久婷婷国产精品综合| 一道本成人在线| 欧美久久一区二区| 精品少妇一区二区三区日产乱码 | 日韩美女在线视频| 不卡的av电影在线观看| 亚洲一区二区三区视频在线| 精品久久久久一区| 91小视频在线免费看| 美国毛片一区二区| 亚洲黄网站在线观看| 欧美一区二区免费观在线| 成人永久aaa| 久久99久久99精品免视看婷婷 | 99riav久久精品riav| 亚洲成人资源在线| 国产欧美一区二区精品性| 欧美性色黄大片手机版| 国内欧美视频一区二区| 久久精品国产成人一区二区三区| 亚洲特黄一级片| 久久久久99精品国产片| 风间由美中文字幕在线看视频国产欧美 | 亚洲人妖av一区二区| 一区二区三区色| 亚洲欧美在线视频| 亚洲线精品一区二区三区| 久久电影国产免费久久电影 | 欧美色综合久久| 欧美成人vr18sexvr| 国产精品色在线| 亚洲国产精品久久人人爱蜜臀| 紧缚捆绑精品一区二区| 99麻豆久久久国产精品免费 | 亚洲综合999| 精品综合久久久久久8888| 99久久伊人久久99| 91精品国产综合久久福利软件 | 成人小视频在线观看| 欧美少妇一区二区| 久久精品一区二区| 亚洲亚洲人成综合网络| 国产精品一区二区三区99| 在线观看亚洲一区| 国产性做久久久久久| 亚洲第一搞黄网站| 成人免费毛片嘿嘿连载视频| 欧美日韩一区高清| 日本一区二区三区高清不卡 | 狠狠色丁香婷婷综合| 色国产综合视频| 久久色.com| 亚洲成人一二三| av电影在线观看一区| 欧美成人性福生活免费看| 亚洲男人的天堂网| 国产精品一区二区不卡| 欧美福利视频一区| 亚洲少妇30p| 国产九九视频一区二区三区| 欧美亚洲国产一区二区三区| 国产精品私人影院| 蜜臀精品一区二区三区在线观看| 91麻豆国产福利在线观看| 久久久国产午夜精品| 三级一区在线视频先锋| 一本色道久久综合亚洲91 | 亚洲高清视频中文字幕| 成人av资源在线观看| 精品国产一二三区| 日韩电影一区二区三区四区| 在线免费观看不卡av| 国产精品视频一二三| 国产一区二区三区|