时间:2021-05-26
缺点:长宽不一的图片会被拉伸变形,不能智能裁切,需要智能裁切的,请自行研究。
<?php
$config=array();
$config['path']="./";
$config['t_width']=120;
$config['t_height']=98;
$config['ignore']=array("",".","..");
$config['prefix']="thumb_";
$done=0;
define("IMAGE_JPG",2);
define("ENDL","\n");
if($handle=opendir($config['path'])){
while(false!==($file=readdir($handle))){
if(!array_search($file,$config['ignore'])){
list($im_width,$im_height,$type)=getimagesize($file);
if($type!=IMAGE_JPG){
continue;
}
$op.="found-><ahref='{$file}'>$file</a>".ENDL;
$im=@imagecreatefromjpeg($file);
if(!$im){
$op.="fail->couldn'tcreatesourimagepointer.".ENDL;
continue;
}
if(file_exists($config['prefix'].$file)||substr($file,0,strlen($config['prefix']))==$config['prefix']){
$op.="note->thisfilehasalreadygotathumbnail.".ENDL;
continue;
}
$to=imagecreatetruecolor($config['t_width'],$config['t_height']);
if(!$to){
$op.="fail->couldn'tcreatedestimagepointer.".ENDL;
continue;
}
if(!imagecopyresampled($to,$im,0,0,0,0,$config['t_width'],$config['t_height'],$im_width,$im_height)){
$op.="fail->couldn'tcreatethumbnail.phpfail.".ENDL;
continue;
}
//保存文件
imagejpeg($to,$config['prefix'].$file);
$op.="done->createdthumb:<ahref='{$config['prefix']}{$file}'>{$config['prefix']}{$file}</a>".ENDL;
$done++;
}
}
}
closedir($handle);
$op.="fin->{$done}file(s)written".ENDL;
echo"<pre>";
echo$op;
echo"</pre>";
exit;
?>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
复制代码代码如下:///生成缩略图//////源图路径///缩略图路径///缩略图宽度///缩略图高度///生成缩略图的方式:HW指定高宽缩放(可能变形);W指
php程序开发中经常涉及到生成缩略图,利用php生成缩略图这个过程本身没难度,但是你知道php能够优化调节生成的缩略图的质量吗?也就是说php能够控制生成缩略图
第一种复制代码代码如下://////生成缩略图//////源图路径(物理路径)///缩略图路径(物理路径)///缩略图宽度///缩略图高度///生成缩略
php利用GD库生成缩略图。复制代码代码如下:
复制代码代码如下://////为图片生成缩略图//////原图片的路径///缩略图宽///缩略图高///publicSystem.Drawing.ImageGe