博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
fpdf基本用法
阅读量:6827 次
发布时间:2019-06-26

本文共 1619 字,大约阅读时间需要 5 分钟。

hot3.png

//关闭自动创页 $this->SetAutoPageBreak(false);  //添加一页 $this->AddPage();  //应用程序 $this->SetCreator('colin',true);  //设置显示模式,显示比例等 $this->SetDisplayMode('real','two');  //设置坐标位置 $y_axis_initial = 30; $x_axis_initial = 30; $this->SetY($y_axis_initial); $this->SetX($x_axis_initial);  //设置标题,true表示utf-8编码文字 $this->SetTitle('标题',true);  //设置主题 $this->SetSubject('主题',true);  //设置主题 $this->SetKeywords('关键词',true);  //设置作者 $this->SetAuthor('小陈',true);  //是否压缩 $this->SetCompression(true);  //设置直线宽度,单位mm $this->SetLineWidth(0.4);  //绘制直线 $this->Line(0,0,50,50);  //绘制矩形 $this->Rect(0,0,50,50);  //绘制获取页码 $pageNumber = $this->PageNo();  //创建连接 $this->SetLink('http://www.baidu.com',0);  //添加 $link = $this->AddLink('http://www.baidu.com',0,1);  //一片区域天剑连接 $this->Link(0,0,20,20,$link);  //获取横坐标圆点值 $abscissa = $this->GetX();  //获取纵坐标圆点值 $ordinate = $this->GetY();  //获取字符串长度 $stringWidth = $this->GetStringWidth('sdfs上的发生大幅創業板');   //设置字体大小 $this->SetFontSize(19);  //设置绘制颜色,RGB格式,对绘制直线等有用 $this->SetDrawColor(0,0,255);  //设置填充颜色,RGB格式,对cell等有用 $this->SetFillColor(255,255,255);  //设置字体大小 $this->SetFontSize(19);  //添加文字,并制定连接 $this->write(100,'sdfs上的发生大幅創業板'.$pageNumber,'http://www.baidu.com');  //填充字的矩形 $this->Ln(0); $this->Cell(30,30,'PRICE',1,50,'C',true,'http://www.baidu.com'); $this->Text(150, 20, 'sdfsdfs上的发生大幅創業板');  $this->AddPage();  $this->Line(0,50,50,0);  $this->SetDrawColor(255,0,255); $this->Line(0,0,50,50);   $this->AliasNbPages();  //发送文件,I发送到浏览器,D下载文件,F保存到文件,S返回字符串 $this->Output('simple.pdf','I'); // $this->pdf->Output($this->pdfSavePath.'/simple.pdf','F');

转载于:https://my.oschina.net/colin86/blog/521423

你可能感兴趣的文章
[Python3网络爬虫开发实战] 1.7.3-Appium的安装
查看>>
magento 购物车 首页 显示
查看>>
mapper.xml
查看>>
微信小程序之滚动图片
查看>>
NTP多种模式的配置
查看>>
html5--4-4 audio元素/格式的转换
查看>>
第 10 章 文件和异常
查看>>
获取物理路径相关
查看>>
用 Flask 来写个轻博客 (2) — Hello World!
查看>>
(2/24) 快速上手一个webpack的demo
查看>>
不高兴的o( ̄ヘ ̄o#)JJ
查看>>
ruby 镜像安装
查看>>
BZOJ4555: [Tjoi2016&Heoi2016]求和
查看>>
如何用Axure快速制作APP交互原型
查看>>
微软正式开源Blazor,将.NET带回到浏览器
查看>>
Linux中普通用户配置sudo权限(带密或免密)
查看>>
poj1753-Flip Game BFS+位运算
查看>>
DeDe调用body文章内容
查看>>
Eclipse的Debug(一)
查看>>
配置虚拟主机(搭建网站)
查看>>