php生成图片缩略图功能示例
程序员文章站
2024-03-31 21:26:28
本文实例讲述了php生成图片缩略图功能。分享给大家供大家参考,具体如下:
完整代码如下(为方便阅读,代码使用进行了格式化处理):
本文实例讲述了php生成图片缩略图功能。分享给大家供大家参考,具体如下:
完整代码如下(为方便阅读,代码使用进行了格式化处理):
<?php /* * created on 2011-3-18 * * to change the template for this generated file go to * window - preferences - phpeclipse - php - code templates */ /*构造函数-生成缩略图+水印,参数说明: $srcfile-图片文件名, $dstfile-另存文件名, $markwords-水印文字, $markimage-水印图片, $dstw-图片保存宽度, $dsth-图片保存高度, $rate-图片保存品质*/ makethumb("1.jpg", "aa/b.jpg", "50", "50"); function makethumb($srcfile, $dstfile, $dstw, $dsth, $rate = 100, $markwords = null, $markimage = null) { $data = getimagesize($srcfile); switch ($data[2]) { case 1: $im = @imagecreatefromgif($srcfile); break; case 2: $im = @imagecreatefromjpeg($srcfile); break; case 3: $im = @imagecreatefrompng($srcfile); break; } if (!$im) return false; $srcw = imagesx($im); $srch = imagesy($im); $dstx = 0; $dsty = 0; if ($srcw * $dsth > $srch * $dstw) { $fdsth = round($srch * $dstw / $srcw); $dsty = floor(($dsth - $fdsth) / 2); $fdstw = $dstw; } else { $fdstw = round($srcw * $dsth / $srch); $dstx = floor(($dstw - $fdstw) / 2); $fdsth = $dsth; } $ni = imagecreatetruecolor($dstw, $dsth); $dstx = ($dstx < 0) ? 0 : $dstx; $dsty = ($dstx < 0) ? 0 : $dsty; $dstx = ($dstx > ($dstw / 2)) ? floor($dstw / 2) : $dstx; $dsty = ($dsty > ($dsth / 2)) ? floor($dsth / s) : $dsty; $white = imagecolorallocate($ni, 255, 255, 255); $black = imagecolorallocate($ni, 0, 0, 0); imagefilledrectangle($ni, 0, 0, $dstw, $dsth, $white); // 填充背景色 imagecopyresized($ni, $im, $dstx, $dsty, 0, 0, $fdstw, $fdsth, $srcw, $srch); if ($markwords != null) { $markwords = iconv("gb2312", "utf-8", $markwords); //转换文字编码 imagettftext($ni, 20, 30, 450, 560, $black, "simhei.ttf", $markwords); //写入文字水印 //参数依次为,文字大小|偏转度|横坐标|纵坐标|文字颜色|文字类型|文字内容 } elseif ($markimage != null) { $wimage_data = getimagesize($markimage); switch ($wimage_data[2]) { case 1: $wimage = @imagecreatefromgif($markimage); break; case 2: $wimage = @imagecreatefromjpeg($markimage); break; case 3: $wimage = @imagecreatefrompng($markimage); break; } imagecopy($ni, $wimage, 500, 560, 0, 0, 88, 31); //写入图片水印,水印图片大小默认为88*31 imagedestroy($wimage); } imagejpeg($ni, $dstfile, $rate); imagejpeg($ni, $srcfile, $rate); imagedestroy($im); imagedestroy($ni); } ?>
ps:这里再为大家推荐几款比较实用的图片处理工具供大家参考使用:
在线图片转换base64工具:
ico图标在线生成工具:
在线email邮箱图标制作工具:
在线图片格式转换(jpg/bmp/gif/png)工具:
更多关于php相关内容感兴趣的读者可查看本站专题:《php图形与图片操作技巧汇总》、《php基本语法入门教程》、《php运算与运算符用法总结》、《php面向对象程序设计入门教程》、《php网络编程技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。