php 生成文字png图片的代码


Posted in PHP onApril 17, 2011
<? 
/* 
php生成文字png图片,可以使用如下方式调用函数: 
http://www.yourdomian.com/text_png.php3?msg=helloworld+class&rot=15&size=48&font=fonts/ARIAL.TTF 
*/ 
Header("Content-type: image/png"); 
class textPNG { 
var $font = 'fonts/TIMES.TTF'; //默认字体. 相对于脚本存放目录的相对路径. 
var $msg = "undefined"; // 默认文字. 
var $size = 24; 
var $rot = 0; // 旋转角度. 
var $pad = 0; // 填充. 
var $transparent = 1; // 文字透明度. 
var $red = 0; // 在黑色背景中... 
var $grn = 0; 
var $blu = 0; 
var $bg_red = 255; // 将文字设置为白色. 
var $bg_grn = 255; 
var $bg_blu = 255; 
function draw() { 
$width = 0; 
$height = 0; 
$offset_x = 0; 
$offset_y = 0; 
$bounds = array(); 
$image = ""; 
// 确定文字高度. 
$bounds = ImageTTFBBox($this->size, $this->rot, $this->font, "W"); 
if ($this->rot < 0) { 
$font_height = abs($bounds[7]-$bounds[1]); 
} else if ($this->rot > 0) { 
$font_height = abs($bounds[1]-$bounds[7]); 
} else { 
$font_height = abs($bounds[7]-$bounds[1]); 
} 
// 确定边框高度. 
$bounds = ImageTTFBBox($this->size, $this->rot, $this->font, $this->msg); 
if ($this->rot < 0) { 
$width = abs($bounds[4]-$bounds[0]); 
$height = abs($bounds[3]-$bounds[7]); 
$offset_y = $font_height; 
$offset_x = 0; 
} else if ($this->rot > 0) { 
$width = abs($bounds[2]-$bounds[6]); 
$height = abs($bounds[1]-$bounds[5]); 
$offset_y = abs($bounds[7]-$bounds[5])+$font_height; 
$offset_x = abs($bounds[0]-$bounds[6]); 
} else { 
$width = abs($bounds[4]-$bounds[6]); 
$height = abs($bounds[7]-$bounds[1]); 
$offset_y = $font_height;; 
$offset_x = 0; 
} 
$image = imagecreate($width+($this->pad*2)+1,$height+($this->pad*2)+1); 
$background = ImageColorAllocate($image, $this->bg_red, $this->bg_grn, $this->bg_blu); 
$foreground = ImageColorAllocate($image, $this->red, $this->grn, $this->blu); 
if ($this->transparent) ImageColorTransparent($image, $background); 
ImageInterlace($image, false); 
// 画图. 
ImageTTFText($image, $this->size, $this->rot, $offset_x+$this->pad, $offset_y+$this->pad, $foreground, $this->font, $this->msg); 
// 输出为png格式. 
imagePNG($image); 
} 
} 
$text = new textPNG; 
if (isset($msg)) $text->msg = $msg; // 需要显示的文字 
if (isset($font)) $text->font = $font; // 字体 
if (isset($size)) $text->size = $size; // 文字大小 
if (isset($rot)) $text->rot = $rot; // 旋转角度 
if (isset($pad)) $text->pad = $pad; // padding 
if (isset($red)) $text->red = $red; // 文字颜色 
if (isset($grn)) $text->grn = $grn; // .. 
if (isset($blu)) $text->blu = $blu; // .. 
if (isset($bg_red)) $text->bg_red = $bg_red; // 背景颜色. 
if (isset($bg_grn)) $text->bg_grn = $bg_grn; // .. 
if (isset($bg_blu)) $text->bg_blu = $bg_blu; // .. 
if (isset($tr)) $text->transparent = $tr; // 透明度 (boolean). 
$text->draw(); 
?>
PHP 相关文章推荐
PHP的面试题集
Nov 19 PHP
UTF8编码内的繁简转换的PHP类
Jul 09 PHP
js限制checkbox勾选的个数以及php获取多个checkbbox的方法深入解析
Jul 18 PHP
php截取字符串之截取utf8或gbk编码的中英文字符串示例
Mar 12 PHP
php实现的九九乘法口诀表简洁版
Jul 28 PHP
ecshop后台编辑器替换成ueditor编辑器
Mar 03 PHP
php用ini_get获取php.ini里变量值的方法
Mar 04 PHP
PHP多线程编程之管道通信实例分析
Mar 07 PHP
Apache服务器下防止图片盗链的办法
Jul 06 PHP
PHP 实现人民币小写转换成大写的方法及大小写转换函数
Nov 17 PHP
PHP实现APP微信支付的实例讲解
Feb 10 PHP
PHP pthreads v3下同步处理synchronized用法示例
Feb 21 PHP
适用于php-5.2 的 php.ini 中文版[金步国翻译]
Apr 17 #PHP
php编写一个简单的路由类
Apr 13 #PHP
php 求质素(素数) 的实现代码
Apr 12 #PHP
php 5.3.5安装memcache注意事项小结
Apr 12 #PHP
php处理json时中文问题的解决方法
Apr 12 #PHP
php 面向对象的一个例子
Apr 12 #PHP
深入理解PHP原理之Session Gc的一个小概率Notice
Apr 12 #PHP
You might like
PHP表单数据写入MySQL数据库的代码
2016/05/31 PHP
php实现微信扫码支付
2017/03/26 PHP
php中各种定义变量的方法小结
2017/10/18 PHP
thinkphp5框架API token身份验证功能示例
2019/05/21 PHP
laravel中数据显示方法(默认值和下拉option默认选中)
2019/10/11 PHP
jQuery EasyUI API 中文文档 - EasyLoader 加载器
2011/09/29 Javascript
jQuery 过滤not()与filter()实例代码
2012/05/10 Javascript
js实现获取焦点后光标在字符串后
2014/09/17 Javascript
JavaScript中对象property的读取和写入方法介绍
2014/12/30 Javascript
AngularJS语法详解(续)
2015/01/23 Javascript
实现placeholder效果的方案汇总
2015/06/11 Javascript
手把手教你写一个微信小程序(推荐)
2018/10/17 Javascript
Vue form表单动态添加组件实战案例
2019/09/02 Javascript
javascript事件循环event loop的简单模型解释与应用分析
2020/03/14 Javascript
vue3中轻松实现switch功能组件的全过程
2021/01/07 Vue.js
[58:12]Ti4第二日主赛事败者组 LGD vs iG 3
2014/07/21 DOTA
跟老齐学Python之变量和参数
2014/10/10 Python
python查询sqlite数据表的方法
2015/05/08 Python
Python中的连接符(+、+=)示例详解
2017/01/13 Python
python+matplotlib绘制简单的海豚(顶点和节点的操作)
2018/01/02 Python
python+numpy+matplotalib实现梯度下降法
2018/08/31 Python
Python面向对象实现一个对象调用另一个对象操作示例
2019/04/08 Python
python实现知乎高颜值图片爬取
2019/08/12 Python
Python + Requests + Unittest接口自动化测试实例分析
2019/12/12 Python
python实现快递价格查询系统
2020/03/03 Python
匡威英国官网:Converse英国
2018/12/02 全球购物
国际领先的在线时尚服装和配饰店:DressLily
2019/03/03 全球购物
上班迟到检讨书范文300字
2014/11/02 职场文书
幼儿园心得体会范文
2016/01/21 职场文书
技术入股合作协议书
2016/03/21 职场文书
在python中实现导入一个需要传参的模块
2021/05/12 Python
基于Python实现将列表数据生成折线图
2022/03/23 Python
如何优化vue打包文件过大
2022/04/13 Vue.js
Python何绘制带有背景色块的折线图
2022/04/23 Python
详解PyTorch模型保存与加载
2022/04/28 Python
spring 项目实现限流方法示例
2022/07/15 Java/Android