用帝国做的商城系统,上传了很多产品图片,后来要求把缩略图改小,很伤脑筋,结果找到上面的帖子,但怎么搞也不行,可能那不是针对6.0.所有自己加以修改终于成功!!!
以下为修改方法:
一、首先,在t_functions.PHP中添加一下两个函数
function Titlepic_all ($ID,$classID,$userID,$username,$pwIDth,$pheight) { global $empire,$class_r,$class_zr,$dbtbpre,$keys; $count = count ($ID); if (!$count) { printerror ('Noteditpic','history.go(-1)'); } for ($i = 0; ($i < $count); ++$i) { $r = $empire->fetch1 ('select * from phome_eCMS_'.$class_r[$classID][tbname].' where ID='.$ID[$i].' and Titlepic<>""'); if(!emptyempty($r[ID])){ ImageResize("../../".$r[Titlepic],$pheight,"../../".$r[Titlepic]); } } printerror ('TitlepicAllSuccess',$_SERVER['http_REFERER']); } Function ImageResize($srcfile,$toW,$toH,$tofile="") { global $keys; if($tofile==""){ $tofile = substr($srcfile,-4)."small".substr($srcfile,-4); } $info = ""; $data = GetimageSize($srcfile,$info); switch ($data[2]) { case 1: if(!function_exists("imagecreatefromgif")){ echo "你的GD库不能使用GIF格式的图片,请使用Jpeg或PNG格式 !<a href='<Font>JavaScript:</Font>go(-1);'>返回</a>"; exit(); } $im = ImageCreateFromGIF($srcfile); break; case 2: if(!function_exists("imagecreatefromjpeg")){ Echo "你的GD库不能使用jpeg格式的图片,请使用其它格式的图 片!<a href='<Font>JavaScript:</Font>go(-1);'>返回</a>"; Exit(); } $im = ImageCreateFromJpeg($srcfile); break; case 3: $im = imagecreatefrompng($srcfile); break; } $srcW = ImageSX($im); $srcH = ImageSY($im); $keys= 0; if (($srcW>$toW) or ($srH>$toH)){ if(($srcW/$toW)>=($srcH/$toH)){ $temp_height=$toH; $temp_wIDth=$srcW/($srcH/$toH); $src_X=Abs(($toW-$temp_wIDth)/2); $src_Y=0; } else{ $temp_wIDth=$toW; $temp_height=$srcH/($srcW/$toW); $src_X=0; $src_Y=Abs(($toH-$temp_height)/2); } $temp_img=ImageCreateTruecolor($temp_wIDth,$temp_height); imagecopyResampled($temp_img,$im,$temp_wIDth,$temp_height,$srcW,$srcH); $ni=ImageCreateTruecolor($toW,$toH); imagecopyResampled($ni,$temp_img,$src_X,$src_Y,$toH); if(Function_exists('imagejpeg')) ImageJpeg($ni,$tofile); else ImagePNG($ni,$tofile); ImageDestroy($ni); $keys= 1; } ImageDestroy($im); } |
二、修改 e/admin/ListNews.PHP{还有个页面:e/admin/ListAllinfo.PHP},大约在最后几行“选中全部 </td></tr>”的后面添加以下代码:
<tr bgcolor="#FFFFFF">
<td height="25" colspan="8"><div align="right">
缩略图宽: <input name="pwIDth" type="text" value="120" wIDth="60">
缩略图高: <input name="pheight" type="text" value="120" wIDth="60">
<input type="submit" name="submit355" value="修改缩略图" onClick="document.Listform.enews.value='Titlepic_all';">
</div></td></tr>
其中,图宽和图稿的默认值可按自己的情况设定,设定好后,以后 *** 作更方便。
三、在e/admin/eCMSinfo.PHP中添加如下代码:
//批量加标题图片
elseif($enews=="Titlepic_all")
{
$ID=$_POST['ID'];
$classID=$_POST['classID'];
$bclassID=$_POST['bclassID'];
$pwIDth=$_POST['pwIDth'];
$pheight=$_POST['pheight'];
Titlepic_all($ID,$logininID,$loginin,$pheight);
}
四、函数中用到“ printerror ('Noteditpic','history.go(-1)');”等 *** 作提示,这个提示可加在e/data/language/gb/pub/message.PHP;当然这一步不加也不影响 *** 作
在message.PHP 后面加:
'Noteditpic'=>'没有选择!',
'TitlepicAllSuccess'=>' *** 作成功!',
总结
以上是内存溢出为你收集整理的6.0批量修改标题缩略图【titlepic】全部内容,希望文章能够帮你解决6.0批量修改标题缩略图【titlepic】所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)