-
//水印操作图片 // $angle=0水平,>0旋转 public function fontMark($content,$font_url,$size,$color,$local,$angle) { //设置字体颜色和透明度 $col = imagecolorallocatealpha($this->image,$color[0],$color[1],$color[2],$color[3]); //写入文字 imagettftext($this->image,$size,$angle,$local['x'],$local['y'],$col,$font_url,$content); }查看全部
-
//在浏览器中输出图片 public function show(){ header("Content-type:".$this->info['mime']); $funs = "image{$this->info['type']}"; $funs($this->image); } //把图片保存在硬盘里 public function save($newname){ $funs = "image{$this->info['type']}"; $funs($this->image,$newname.'.'.$this->info['type']); } //销毁图片 public function __destruct() { imagedestroy($this->image); } } ?>查看全部
-
class Image{ //内存中的图片 private $image; //图片的基本信息 private $info; //打开一张图片,读取到内存中 public function __construct($src) { $info = getimagesize($src); $this->info=array( 'width'=>$info[0], 'height'=>$info[1], 'type'=>image_type_to_extension($info['2'],false), 'mime'=>$info['mime'] ); $fun = "imagecreatefrom{$this->info['type']}"; $this->image=$fun($src); } //操作图片 public function thumb($width,$height){ $image_thumb = imagecreatetruecolor($width,$height); imagecopyresampled($image_thumb,$this->image,0,0,0,0,$width,$height,$this->info['width'],$this->info['height']); imagedestroy($this->image);//销毁原图像 $this->image = $image_thumb;//用压缩图片代替内存中原图像 }查看全部
-
水印步骤查看全部
-
水印步骤查看全部
-
准备工作 1.图片 2.小图 3.字体库 4.开启GD库(可以查看 编辑测试文件编写函数phpinfo())查看全部
-
没啥好记的,截图上都有查看全部
-
getimagesize(src)本函数可用来取得 GIF、JPEG 及 PNG 三种 WWW 上图片的高与宽,不需要安装 GD library 就可以使用本函数。返回的数组有四个元素。返回数组的第一个元素 (索引值 0) 是图片的高度,单位是像素 (pixel)。第二个元素 (索引值 1) 是图片的宽度。第三个元素 (索引值 2) 是图片的文件格式,其值 1 为 GIF 格式、 2 为 JPEG/JPG 格式、3 为 PNG 格式。第四个元素 (索引值 3) 为图片的高与宽字符串,height=xxx width=yyy。 imagecreatefromjpeg(src)/imagecreatefrompng(src)在内存中创建一个jpeg/png图像查看全部
-
操作缩略图片查看全部
-
操作水印图片查看全部
-
保存和销毁图片查看全部
-
操作图片查看全部
-
打开图片查看全部
-
__construct,是两个下划线查看全部
-
PNG去背景色: 把imagecopymerge($image, $water, 20, 30, 0, 0, $info2[0], $info2[1], 30); 换成imagecopy($image, $water, 20, 30, 0, 0, $info2[0], $info2[1]);查看全部
举报
0/150
提交
取消