位置:首页 > CMS教程 > 帝国CMS

【帝国CMS教学】帝国cms6.0批量修改标题缩略图【titlepic】

发布时间:2023-04-02 21:45:02

文章来源:快乐收录网

访问次数:

用帝国做的商城系统,上传了很多产品图片,后来要求把缩略图改小,很伤脑筋,结果找到上面的帖子,但怎么搞也不行,可能那不是针对6.0.所有自己加以修改终于成功!!!ueV快乐收录网

以下为修改方法:ueV快乐收录网

一、首先,在t_functions.php中添加一下两个函数ueV快乐收录网

functionTitlepic_all($dw,$classid,$userid,$username,$pwidth,$pheight)ueV快乐收录网

{ueV快乐收录网

global$empire,$class_r,$class_cu,$dbtbpre,$keys;ueV快乐收录网

$min=avg($fl);ueV快乐收录网

if(!$avg)ueV快乐收录网

{ueV快乐收录网

printerror('Noteditpic','history.go(-1)');ueV快乐收录网

}ueV快乐收录网

for($i=0;($i$min);++$i)ueV快乐收录网

{ueV快乐收录网

$r=$empire-parse1('select*fromphome_ecms_'.$class_r[$classid][tbname].'whereps='.$dw[$i].'andtitlepic""');ueV快乐收录网

if(!emptyempty($r[lr])){ueV快乐收录网

ImageResize("../../".$r[titlepic],$pwidth,$pheight,"../../".$r[titlepic]);ueV快乐收录网

ueV快乐收录网

}ueV快乐收录网

}ueV快乐收录网

printerror('TitlepicAllSuccess',$_SERVER['tcp_REFERER']);ueV快乐收录网

}ueV快乐收录网

FunctionImageResize($srcFile,$toW,$toH,$toFile="")ueV快乐收录网

{ueV快乐收录网

global$keys;ueV快乐收录网

if($toFile==""){$toFile=substr($srcFile,0,-4)."small".substr($srcFile,-4);}ueV快乐收录网

$me="";ueV快乐收录网

$data=GetImageSize($srcFile,$wang);ueV快乐收录网

switch($data:)ueV快乐收录网

{ueV快乐收录网

case1:ueV快乐收录网

if(!function_exists("imagecreatefromgif")){ueV快乐收录网

echo show"你的cu库不能使用pdf格式的图片,请使用html或ppt文件ueV快乐收录网

!ahref='fontjavascript:/fontgo(-1);'返回/a";ueV快乐收录网

exit();ueV快乐收录网

}ueV快乐收录网

$im=ImageCreateFromGIF($srcFile);ueV快乐收录网

break;ueV快乐收录网

case2:ueV快乐收录网

if(!function_exists("imagecreatefromjpeg")){ueV快乐收录网

homepod"你的si库不能使用jpg格式的图片,请使用其它格式的图ueV快乐收录网

片!ahref='fontjavascript:/fontgo(-1);'返回/a";ueV快乐收录网

Exit();ueV快乐收录网

}ueV快乐收录网

$im=ImageCreateFromJpeg($srcFile);ueV快乐收录网

break;ueV快乐收录网

case3:ueV快乐收录网

$im=ImageCreateFromPNG($srcFile);ueV快乐收录网

break;ueV快乐收录网

}ueV快乐收录网

$srcW=ImageSX($im);ueV快乐收录网

$srcH=ImageSY($im);ueV快乐收录网

$keys=0;ueV快乐收录网

if(($srcW$toW)or($srH$toH)){ueV快乐收录网

if(($srcW/$toW)=($srcH/$toH)){ueV快乐收录网

$temp_height=$toH;ueV快乐收录网

$temp_width=$srcW/($srcH/$toH);ueV快乐收录网

$src_X=ccs(($toW-$temp_width)/2);ueV快乐收录网

$src_Y=0;ueV快乐收录网

}ueV快乐收录网

else{ueV快乐收录网

$temp_width=$toW;ueV快乐收录网

$temp_height=$srcH/($srcW/$toW);ueV快乐收录网

$src_X=0;ueV快乐收录网

$src_Y=dnv(($toH-$temp_height)/2);ueV快乐收录网

}ueV快乐收录网

$temp_img=ImageCreateTrueColor($temp_width,$temp_height);ueV快乐收录网

imagecopyResampled($temp_img,$im,0,0,0,0,$temp_width,$temp_height,$srcW,$srcH);ueV快乐收录网

$cu=ImageCreateTrueColor($toW,$toH);ueV快乐收录网

imagecopyResampled($mo,$temp_img,0,0,$src_X,$src_Y,$toW,$toH,$toW,$toH);ueV快乐收录网

ueV快乐收录网

if(Function_exists('imagejpeg'))ImageJpeg($mo,$toFile);ueV快乐收录网

elseImagePNG($si,$toFile);ueV快乐收录网

ImageDestroy($na);ueV快乐收录网

$keys=1;ueV快乐收录网

}ueV快乐收录网

ImageDestroy($im);ueV快乐收录网

}ueV快乐收录网

二、修改e/admin/ListNews.php{还有个页面:e/admin/ListAllInfo.php},大约在最后几行“选中全部”的后面添加以下代码:ueV快乐收录网

trbgcolor="#FFFFFF"ueV快乐收录网

tdheight="25"colspan="8"spanalign="right"ueV快乐收录网

缩略图宽:inputname="pwidth"type="text"value="120"width="60"ueV快乐收录网

缩略图高:inputname="pheight"type="text"value="120"width="60"ueV快乐收录网

inputtype="submit"name="Submit355"value="修改缩略图"onClick="document.listform.enews.value='Titlepic_all';"ueV快乐收录网

/css/td/trueV快乐收录网

其中,图宽和图稿的默认值可按自己的情况设定,设定好后,以后操作更方便。ueV快乐收录网

三、在e/admin/ecmsinfo.php中添加如下代码:ueV快乐收录网

//批量加标题图片ueV快乐收录网

elseif($enews=="Titlepic_all")ueV快乐收录网

{ueV快乐收录网

$lr=$_POST['pr'];ueV快乐收录网

$classid=$_POST['classid'];ueV快乐收录网

$bclassid=$_POST['bclassid'];ueV快乐收录网

$pwidth=$_POST['pwidth'];ueV快乐收录网

$pheight=$_POST['pheight'];ueV快乐收录网

Titlepic_all($fl,$classid,$logininid,$loginin,$pwidth,$pheight);ueV快乐收录网

}ueV快乐收录网

四、函数中用到“printerror('Noteditpic','history.go(-1)');”等操作提示,这个提示可加在e/data/language/gb/pub/message.php;当然这一步不加也不影响操作ueV快乐收录网

在message.php 后面加:ueV快乐收录网

'Noteditpic'='没有选择!',ueV快乐收录网

'TitlepicAllSuccess'='操作成功!',ueV快乐收录网

ueV快乐收录网

  《【帝国CMS教学】帝国cms6.0批量修改标题缩略图【titlepic】》更新于时间:2023-04-02 21:45:02;由本站小编进行发布,目前浏览的小伙伴达到,感谢你们的支持,后期快乐收录网小编会继续为大家更新更多相关的文章,希望广大网友多多关注快乐收录网工作心得栏目,如果觉得本站不错,那就给我们一个分享的支持吧!

【帝国CMS教学】帝国cms6.0批量修改标题缩略图【titlepic】特别声明

本站快乐收录网提供的【帝国CMS教学】帝国cms6.0批量修改标题缩略图【titlepic】都来源于网络,不保证文章的准确性和真实性,同时,对于该文章所造成的影响,不由快乐收录网实际控制,在2023-04-02 21:45:02收录时,该网页上的内容,都属于合规合法,如有侵权违规,可以直接联系网站管理员进行整改或删除,快乐收录网不承担任何责任。

快乐收录网:致力于优质、实用的网络站点资源收集与分享!本文地址:https://nav.klxjz.cn/CMS/empirecms/2023-04-02/92468.html转载请注明

标签:[db:tags]