亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产欧美一区二区三区在线老狼| 亚洲制服丝袜一区| 成人免费一区二区三区在线观看| 亚洲第一狼人社区| 国产成人精品免费在线| 欧美精品亚洲二区| 亚洲免费在线观看视频| 国产精品综合视频| 日韩一区二区在线观看视频播放| 国产精品国产三级国产普通话三级| 美国十次综合导航| 欧美午夜精品电影| 国产精品国产自产拍高清av王其| 奇米色一区二区| 欧美午夜精品一区二区蜜桃| 国产精品第一页第二页第三页| 美女www一区二区| 欧洲av一区二区嗯嗯嗯啊| 欧美国产日韩亚洲一区| 极品少妇xxxx精品少妇| 26uuu国产一区二区三区| 伊人色综合久久天天| 成a人片国产精品| 国产精品视频你懂的| 国产成人自拍网| 久久综合久久久久88| 久久精品国产精品青草| 91精品免费观看| 日韩二区三区四区| 欧美日韩国产一二三| 亚洲一二三四在线| 欧美网站一区二区| 亚洲影视在线播放| 欧美日韩极品在线观看一区| 一区二区久久久久| 欧美日韩国产系列| 日韩一区精品视频| 欧美一级爆毛片| 国产尤物一区二区在线| 久久久久久久久久久久久女国产乱| 久久99久久久久| 久久久综合激的五月天| 国产精品一区不卡| 亚洲欧洲av一区二区三区久久| 99麻豆久久久国产精品免费| 亚洲天堂免费在线观看视频| 在线中文字幕一区| 午夜视频一区在线观看| 欧美一卡二卡在线| 国产精品系列在线播放| 国产精品久久毛片| 色婷婷香蕉在线一区二区| 亚洲妇女屁股眼交7| 日韩一区二区三区四区 | 欧美一区二区国产| 精品在线一区二区| 日韩成人一区二区| 精品国产伦一区二区三区观看体验 | 精品久久99ma| 国产成都精品91一区二区三| 亚洲特黄一级片| 欧美另类高清zo欧美| 久久99在线观看| 日韩毛片精品高清免费| 欧美一二区视频| jlzzjlzz亚洲女人18| 午夜不卡av在线| 久久看人人爽人人| 欧美中文字幕一区| 狠狠v欧美v日韩v亚洲ⅴ| 国产精品久久久99| 日韩一区二区三区观看| 成人小视频免费在线观看| 亚洲精品国产第一综合99久久| 欧美一区二区日韩| 一本色道久久综合精品竹菊| 午夜激情一区二区三区| 亚洲国产精品精华液2区45| 欧美日韩成人激情| av成人老司机| 国产一区二区精品久久99| 亚洲激情图片一区| 国产午夜三级一区二区三| 欧美日韩精品福利| av亚洲精华国产精华精| 蜜臀久久99精品久久久久宅男| 国产精品久久久久久久蜜臀| 日韩欧美一卡二卡| 欧美色综合网站| 国产成人免费高清| 久久精品国产精品青草| 一区二区三区四区在线免费观看 | 欧美主播一区二区三区| 国产成人精品免费看| 午夜精品免费在线| 亚洲欧美国产三级| 国产无一区二区| 精品日韩一区二区三区免费视频| 欧美视频你懂的| 色婷婷综合久久久| 成人爽a毛片一区二区免费| 精品综合久久久久久8888| 亚洲高清不卡在线| 亚洲综合成人在线| 一区二区三区精密机械公司| 中文字幕精品在线不卡| 久久综合色天天久久综合图片| 欧美日韩国产免费一区二区 | 精品一二三四在线| 视频一区中文字幕国产| 一区二区三区精品| 亚洲一区二区免费视频| 亚洲欧美日韩国产手机在线| 欧美国产禁国产网站cc| 久久日一线二线三线suv| 精品入口麻豆88视频| 精品国产露脸精彩对白| 精品国产乱码久久久久久老虎| 91精品国产欧美一区二区成人| 欧美卡1卡2卡| 91精品国产综合久久精品图片| 在线成人免费视频| 欧美福利电影网| 91精品麻豆日日躁夜夜躁| 91精品国产综合久久久蜜臀粉嫩 | 全部av―极品视觉盛宴亚洲| 天堂一区二区在线免费观看| 奇米精品一区二区三区在线观看一| 奇米影视在线99精品| 极品尤物av久久免费看| 懂色av一区二区三区蜜臀| 高清国产一区二区三区| 91在线免费视频观看| 91久久久免费一区二区| 欧美日韩中文精品| 日韩一级二级三级| 国产精品视频看| 亚洲精品五月天| 日韩在线观看一区二区| 黄色小说综合网站| 91女神在线视频| 91麻豆精品国产91久久久久| 国产日韩精品视频一区| 一区二区三区美女视频| 婷婷丁香激情综合| 国产精品自拍一区| 91福利区一区二区三区| 日韩一级片在线播放| 国产精品三级在线观看| 亚洲va国产天堂va久久en| 国产一区二区三区在线观看免费| 91色综合久久久久婷婷| 日韩一二三区视频| 国产精品久久久久三级| 日本亚洲天堂网| 99在线热播精品免费| 日韩女优毛片在线| 亚洲视频在线一区| 奇米精品一区二区三区在线观看一| 成人高清免费观看| 欧美日韩国产美女| 中文字幕日韩一区二区| 免费在线成人网| 色婷婷av一区| 国产免费久久精品| 日本强好片久久久久久aaa| 成人精品免费网站| 欧美一级高清片| 夜夜爽夜夜爽精品视频| 国产一区二区调教| 91精品视频网| 亚洲综合一区二区三区| 成人精品电影在线观看| 91精品国产丝袜白色高跟鞋| 亚洲日本在线视频观看| 国产一区二区三区免费观看| 欧美精品少妇一区二区三区| 亚洲男女毛片无遮挡| 国产99精品国产| 日韩精品一区二区在线观看| 亚洲电影中文字幕在线观看| 成人深夜视频在线观看| 久久久久久97三级| 精品一区二区三区免费毛片爱| 欧美日韩精品福利| 亚洲午夜久久久| 欧美亚洲一区二区三区四区| 亚洲国产成人午夜在线一区| 国内成人免费视频| 精品1区2区在线观看| 另类小说综合欧美亚洲| 欧美一级免费大片| 日韩中文字幕麻豆| 91麻豆精品国产自产在线观看一区| 亚洲一区二区三区四区五区中文| www.亚洲激情.com| 中文字幕亚洲在| 91论坛在线播放| 亚洲男人的天堂一区二区| 色哟哟一区二区三区|