一、png图片生成
public function entryOp() {
$img = 'http://newmall.yewugou.com/ylfapporderform/images/test.png';
list($width, $height) = @getimagesize($img);
$image = imagecreatefrompng($img);//创建图片模板
imagesavealpha($image,true);//保留通道信息
$thumb = imagecreatetruecolor($width,$height);//创建真彩图
//设置字体开始
$black = imagecolorallocate($image, 98, 52, 11);//拾色器
$font_file = $_SERVER['DOCUMENT_ROOT'].DIRECTORY_SEPARATOR.'mobile'.DIRECTORY_SEPARATOR.'fonts'.DIRECTORY_SEPARATOR.'msyh.ttf';
imagefttext($image, 25, 0, 980, 125, $black, $font_file, '2016年11月05日');
imagefttext($image, 25, 0, 980, 165, $black, $font_file, '2017年05月05日');
imagefttext($image, 25, 0, 630, 295, $black, $font_file, '梦儿');
imagefttext($image, 25, 0, 630, 390, $black, $font_file, '18005076960');
imagefttext($image, 25, 0, 630, 480, $black, $font_file, '18005076960');
imagefttext($image, 25, 0, 630, 570, $black, $font_file, '伐木累');
$color = imagecolorallocate($image, 255, 84, 31);
imagefttext($image, 40, 0, 530, 690, $color, $font_file, '动作');
//设置字体结束
imagealphablending($thumb,false);
imagesavealpha($thumb,true);
imagecopyresampled($thumb,$image,0,0,0,0,$width,$height,$width,$height);
header("content-type: image/png");
imagepng($thumb);
imagedestroy($image);
}
- 环境搭建
- centos6.5 lnmp环境搭建
- svn环境搭建
- centos lamp安装配置
- mysql
- mysql常用命令
- mysql技术内幕
- 1.1mysql体系结构
- 1.2mysql存储引擎
- 1.3mysql连接
- linux
- linux-常用命令
- linux下vim命令
- 第三方平台开发
- 微信开发之旅
- php
- php框架
- lavarel常用命令
- thinkPhp常用命令
- yii2.0.8
- 安装
- yii常用
- yii配置
- yii常用2
- php源码积累
- php字符串截取
- php图片处理(gd)
- 二维数组保持索引排序(高低)
- 获取一个月首尾天数
- 时间函数
- php内置函数
- html
- js
- 基本命令
- js案例
- js去空格
- css
- 基本样式
- 案例
- ul li 横向水平居中自适应案例
- 固定底部导航栏并自适应
- 购物车带角标
- display的兼容解决
- 前端框架
- boostrap
- 常用类
- git
- 上传项目到远程仓库GitHub