GD创建图像缩略图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GD创建图像缩略图相关的知识,希望对你有一定的参考价值。
<?php function createThumb($width,$height,$quality,$filename,$newfilename){ //@author: zemin 1 => 'gif', 2 => 'jpeg', 3 => 'png' ); if (!$types[$info[2]]) return false; $ratio_orig = $info[0]/$info[1]; if ($width/$height > $ratio_orig) { $width = $height*$ratio_orig; } else { $height = $width/$ratio_orig; } $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefrom'.$types[$info[2]].'($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $info[0], $info[1]); $result = image'.$types[$info[2]].'($image_p, $newfilename, $quality); '); return $result; } ?>
以上是关于GD创建图像缩略图的主要内容,如果未能解决你的问题,请参考以下文章