用帝国做的商城系统,上传了很多产品图片,后来要求把缩略图改小,很伤脑筋,结果找到上面的帖子,但怎么搞也不行,可能那不是针对6.0.所有自己加以修改终于成功!!!
以下为修改方法:
一、首先,在t_functions.php中添加一下两个函数

  1. function Titlepic_all ($id, $classid, $userid, $username, $pwidth, $pheight)
  2. {
  3. global $empire,$class_r,$class_zr,$dbtbpre,$keys;
  4. $count = count ($id);
  5. if (!$count)
  6. {
  7. printerror ('Noteditpic', 'history.go(-1)');
  8. }
  9. for ($i = 0; ($i < $count); ++$i)
  10. {
  11. $r = $empire->fetch1 ('select * from phome_ecms_'.$class_r[$classid][tbname].' where id='.$id[$i].' and titlepic<>""');
  12. if(!emptyempty($r[id])){
  13. ImageResize("../../".$r[titlepic],$pwidth,$pheight,"../../".$r[titlepic]);
  14. }
  15. }
  16. printerror ('TitlepicAllSuccess', $_SERVER['HTTP_REFERER']);
  17. }
  18. Function ImageResize($srcFile,$toW,$toH,$toFile="")
  19. {
  20. global $keys;
  21. if($toFile==""){ $toFile = substr($srcFile,0,-4)."small".substr($srcFile,-4); }
  22. $info = "";
  23. $data = GetImageSize($srcFile,$info);
  24. switch ($data[2])
  25. {
  26. case 1:
  27. if(!function_exists("imagecreatefromgif")){
  28. echo "你的GD库不能使用GIF格式的图片,请使用Jpeg或PNG格式
  29. !<a href='<font>javascript:</font>go(-1);'>返回</a>";
  30. exit();
  31. }
  32. $im = ImageCreateFromGIF($srcFile);
  33. break;
  34. case 2:
  35. if(!function_exists("imagecreatefromjpeg")){
  36. Echo "你的GD库不能使用jpeg格式的图片,请使用其它格式的图
  37. 片!<a href='<font>javascript:</font>go(-1);'>返回</a>";
  38. Exit();
  39. }
  40. $im = ImageCreateFromJpeg($srcFile);
  41. break;
  42. case 3:
  43. $im = ImageCreateFromPNG($srcFile);
  44. break;
  45. }
  46. $srcW = ImageSX($im);
  47. $srcH = ImageSY($im);
  48. $keys= 0;
  49. if (($srcW>$toW) or ($srH>$toH)){
  50. if(($srcW/$toW)>=($srcH/$toH)){
  51. $temp_height=$toH;
  52. $temp_width=$srcW/($srcH/$toH);
  53. $src_X=Abs(($toW-$temp_width)/2);
  54. $src_Y=0;
  55. }
  56. else{
  57. $temp_width=$toW;
  58. $temp_height=$srcH/($srcW/$toW);
  59. $src_X=0;
  60. $src_Y=Abs(($toH-$temp_height)/2);
  61. }
  62. $temp_img=ImageCreateTrueColor($temp_width,$temp_height);
  63. imagecopyResampled($temp_img,$im,0,0,0,0,$temp_width,$temp_height,$srcW,$srcH);
  64. $ni=ImageCreateTrueColor($toW,$toH);
  65. imagecopyResampled($ni,$temp_img,0,0,$src_X,$src_Y,$toW,$toH,$toW,$toH);
  66. if(Function_exists('imagejpeg')) ImageJpeg($ni,$toFile);
  67. else ImagePNG($ni,$toFile);
  68. ImageDestroy($ni);
  69. $keys= 1;
  70. }
  71. ImageDestroy($im);
  72. }

二、修改 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,$classid,$logininid,$loginin,$pwidth,$pheight);
}
四、函数中用到“ printerror ('Noteditpic', 'history.go(-1)');”等操作提示,这个提示可加在e/data/language/gb/pub/message.php;当然这一步不加也不影响操作
在message.php 后面加:

'Noteditpic'=>'没有选择!',
'TitlepicAllSuccess'=>'操作成功!',

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:6.0批量修改标题缩略图【titlepic】发布于2023-03-19 20:23:32

相关推荐