首页 > 其他 > 详细

GD库常用函数

时间:2016-10-21 13:00:16      阅读:95      评论:0      收藏:0      [点我收藏+]

创建句柄

  • imagecreate($width, $height)                                                  //新建图像
  • imagecreatefromjpeg($path)                                               //打开已有的图像

  • imagecreatefromgif($path)

  • imagecreatefrompng($path)

getimagesize($path)                        //获取图像信息

imagecopyresampled($newImage, $image, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);// 创建缩略图

imagearc($image, $cx, $cy, $width, $height, $start, $end, $color) //创建圆

imagestring($image, $font, $x, $y, $string, $color)        //水平绘制字符串

imagestringup($image, $font, $x, $y, $string, $color)      //垂直绘制字符串

$color= imagecolorallocate($image, $red, $green, $blue)     //设置图像颜色

imagefilledrectangle($image, 0, 0, 100, 100, $white);       //矩形填充

header("Content-type: image/png");

imagepng($image);                        //输出png图像(jpeg/gif)

imagedestroy($image)                       //关闭句柄

imagecopymerge($dst, $src, 10, 10, 0, 0, $src_w, $src_h, 50);   //图片叠加

用法:创建验证码,图片添加水印,创建缩略图等

 

GD库常用函数

原文:http://www.cnblogs.com/docter/p/5984058.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!