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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? fpdf.php

?? asterisk用 的voip記費(fèi)軟件
?? PHP
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
<?php
/*******************************************************************************
* Software: FPDF                                                               *
* Version:  1.52(modified)                                                     *
* Date:     2003-12-30                                                         *
* Author:   Olivier PLATHEY                                                    *
* License:  Freeware                                                           *
*                                                                              *
* You may use, modify and redistribute this software as you wish.              *
*******************************************************************************/

// Modified by Renato A.C. [html2fpdf.sf.net]
// (look for 'EDITEI' in the code)

if(!class_exists('FPDF'))
{
define('FPDF_VERSION','1.52');

class FPDF
{
//Private properties
var $DisplayPreferences=''; //EDITEI - added
var $outlines=array(); //EDITEI - added
var $OutlineRoot; //EDITEI - added
var $flowingBlockAttr; //EDITEI - added
var $page;               //current page number
var $n;                  //current object number
var $offsets;            //array of object offsets
var $buffer;             //buffer holding in-memory PDF
var $pages;              //array containing pages
var $state;              //current document state
var $compress;           //compression flag
var $DefOrientation;     //default orientation
var $CurOrientation;     //current orientation
var $OrientationChanges; //array indicating orientation changes
var $k;                  //scale factor (number of points in user unit)
var $fwPt,$fhPt;         //dimensions of page format in points
var $fw,$fh;             //dimensions of page format in user unit
var $wPt,$hPt;           //current dimensions of page in points
var $w,$h;               //current dimensions of page in user unit
var $lMargin;            //left margin
var $tMargin;            //top margin
var $rMargin;            //right margin
var $bMargin;            //page break margin
var $cMargin;            //cell margin
var $x,$y;               //current position in user unit for cell positioning
var $lasth;              //height of last cell printed
var $LineWidth;          //line width in user unit
var $CoreFonts;          //array of standard font names
var $fonts;              //array of used fonts
var $FontFiles;          //array of font files
var $diffs;              //array of encoding differences
var $images;             //array of used images
var $PageLinks;          //array of links in pages
var $links;              //array of internal links
var $FontFamily;         //current font family
var $FontStyle;          //current font style
var $underline;          //underlining flag
var $CurrentFont;        //current font info
var $FontSizePt;         //current font size in points
var $FontSize;           //current font size in user unit
var $DrawColor;          //commands for drawing color
var $FillColor;          //commands for filling color
var $TextColor;          //commands for text color
var $ColorFlag;          //indicates whether fill and text colors are different
var $ws;                 //word spacing
var $AutoPageBreak;      //automatic page breaking
var $PageBreakTrigger;   //threshold used to trigger page breaks
var $InFooter;           //flag set when processing footer
var $ZoomMode;           //zoom display mode
var $LayoutMode;         //layout display mode
var $title;              //title
var $subject;            //subject
var $author;             //author
var $keywords;           //keywords
var $creator;            //creator
var $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;

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品久久久久久蜜臀| 日韩国产精品久久久久久亚洲| 国产欧美日韩在线| 久久亚洲免费视频| 久久久久久久久久久久久久久99 | 国产精品一级片在线观看| 九九国产精品视频| 久久不见久久见中文字幕免费| 精品在线亚洲视频| 国产乱码精品一品二品| 成人激情免费网站| 一本久久精品一区二区| 精品视频123区在线观看| 欧美挠脚心视频网站| 欧美一区二区视频免费观看| 日韩女优电影在线观看| 国产视频不卡一区| 亚洲欧美日韩久久精品| 爽好多水快深点欧美视频| 另类欧美日韩国产在线| 国产精华液一区二区三区| 99re成人在线| 欧美精选一区二区| 久久综合九色综合欧美亚洲| 国产精品传媒入口麻豆| 亚洲成人激情av| 精品写真视频在线观看| www.在线成人| 欧美日本一区二区| 欧美成人乱码一区二区三区| 国产精品色在线| 午夜伦欧美伦电影理论片| 国产一区二区影院| 色婷婷国产精品| 欧美zozozo| 亚洲精品国产精华液| 美脚の诱脚舐め脚责91 | 欧美色图12p| 欧美日韩视频专区在线播放| 9191精品国产综合久久久久久| 精品国产伦一区二区三区观看方式 | 色综合中文字幕| 欧美理论片在线| 国产色综合一区| 亚洲成人综合网站| 成人综合激情网| 7777精品伊人久久久大香线蕉的| 国产欧美日韩激情| 日韩va亚洲va欧美va久久| a在线欧美一区| 精品国产一区久久| 亚洲香肠在线观看| 国产伦精品一区二区三区免费| 色综合天天做天天爱| 精品国产一区二区三区不卡| 亚洲一区二区三区美女| 国产成人免费视频一区| 欧美日韩国产不卡| 国产精品免费看片| 老汉av免费一区二区三区 | 亚洲欧美中日韩| 日本成人中文字幕在线视频| aaa欧美大片| 久久一区二区视频| 青青草视频一区| 欧美三级在线视频| 1区2区3区欧美| 国产麻豆成人精品| 91麻豆精品国产91久久久久| 国产精品的网站| 国产传媒一区在线| 日韩亚洲欧美中文三级| 夜夜爽夜夜爽精品视频| av电影在线观看一区| 久久蜜桃av一区精品变态类天堂| 亚洲 欧美综合在线网络| 色综合久久久久网| 国产精品乱码一区二三区小蝌蚪| 美女视频黄a大片欧美| 欧美群妇大交群的观看方式| 亚洲婷婷综合久久一本伊一区| 国产一区二区不卡老阿姨| 91精品在线麻豆| 亚洲成人av电影| 欧洲av在线精品| 亚洲欧美日韩久久| 99re这里只有精品6| 国产精品久久三区| 成人福利视频网站| 国产婷婷色一区二区三区在线| 看电影不卡的网站| 91麻豆精品国产综合久久久久久 | 一本色道久久综合亚洲aⅴ蜜桃| 久久综合久久鬼色| 精品一区二区三区在线观看 | 国产精品视频观看| 盗摄精品av一区二区三区| 久久噜噜亚洲综合| 国产精品综合视频| 欧美国产日韩a欧美在线观看| 91久久一区二区| 夜夜精品浪潮av一区二区三区| 91猫先生在线| 亚洲自拍偷拍综合| 欧美亚洲丝袜传媒另类| 亚洲gay无套男同| 精品视频在线免费| 图片区小说区区亚洲影院| 欧美日韩一区二区三区四区五区| 亚洲午夜免费电影| 欧美精品日日鲁夜夜添| 五月天亚洲婷婷| 精品伦理精品一区| 国产精品一区久久久久| 国产精品欧美一区二区三区| caoporm超碰国产精品| 一区二区三区四区高清精品免费观看| 在线看国产一区二区| 亚洲成人免费观看| 欧美成人在线直播| 国产黄色91视频| 国产精品萝li| 欧洲一区二区三区免费视频| 三级欧美在线一区| 久久综合色天天久久综合图片| 国产激情视频一区二区在线观看 | 亚洲一区在线看| 69成人精品免费视频| 黄页视频在线91| 欧美高清视频一二三区 | 欧美在线播放高清精品| 亚洲成人av电影在线| 亚洲精品在线一区二区| 成人在线视频首页| 亚洲香肠在线观看| 亚洲精品一区在线观看| 一本色道a无线码一区v| 免费成人在线网站| 中文字幕一区二区三区精华液| 欧美人与性动xxxx| 国产传媒日韩欧美成人| 亚洲一二三四在线| 久久久精品免费免费| 欧美性生活一区| 国内成人自拍视频| 亚洲一区二区三区不卡国产欧美| 精品福利二区三区| 日本精品免费观看高清观看| 精品一区二区三区在线视频| 亚洲视频狠狠干| 精品福利一区二区三区| 欧洲视频一区二区| 高清不卡一区二区| 秋霞影院一区二区| 亚洲女同一区二区| 久久久美女毛片| 在线成人高清不卡| 99久久精品免费看国产| 激情久久五月天| 亚洲综合一区二区三区| 久久精品人人爽人人爽| 欧美乱妇20p| 一本一道久久a久久精品| 韩国三级电影一区二区| 五月婷婷综合在线| 亚洲人妖av一区二区| 精品国产乱码久久久久久1区2区 | 久久久久久久综合| 欧美日韩dvd在线观看| 91视频免费播放| 国产另类ts人妖一区二区| 欧美a级一区二区| 亚洲国产乱码最新视频 | 国产一区91精品张津瑜| 午夜欧美视频在线观看| 亚洲人成精品久久久久久| 国产欧美日韩久久| 欧美精品一区二区高清在线观看| 欧美视频在线一区| 91污片在线观看| 不卡的av中国片| 国产成人自拍网| 国产做a爰片久久毛片| 日本v片在线高清不卡在线观看| 一区二区三区在线高清| 中文字幕av资源一区| 日韩三级中文字幕| 777奇米四色成人影色区| 欧美日韩三级视频| 欧美日韩一区高清| 在线免费亚洲电影| 一本色道久久综合亚洲精品按摩| 成人午夜激情在线| 国产大片一区二区| 国产精品18久久久久久久网站| 久久疯狂做爰流白浆xx| 久久精品国产精品亚洲综合| 日韩一区欧美二区| 美女一区二区三区在线观看| 免费看日韩a级影片|