名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
DedeCMS站点程序系统默认水印的位置与图片边线相隔5像素,因此追求美观时需要修改水印的坐标,实现相关具体操作方法如下:
找到include目录下的image.class.php网站文件,查找以下相关具体代码如下:
x = 5; $y = 5; break; case 2: $x = ($imagewidth - $logowidth) / 2; $y = 5; break; case 3: $x = $imagewidth - $logowidth - 5; $y = 5; break; case 4: $x = 5; $y = ($imageheight - $logoheight) / 2; break; case 5: $x = ($imagewidth - $logowidth) / 2; $y = ($imageheight - $logoheight) / 2; break; case 6: $x = $imagewidth - $logowidth - 5; $y = ($imageheight - $logoheight) / 2; break; case 7: $x = 5; $y = $imageheight - $logoheight - 5; break; case 8: $x = ($imagewidth - $logowidth) / 2; $y = $imageheight - $logoheight - 5; break; case 9: $x = $imagewidth - $logowidth - 5; $y = $imageheight - $logoheight -5; break; |
栏目从1-9,也就是水印的位置,和下表是相对应的,这里你就可以修改后面的数据修改坐标了。
顶部居左 顶部居中 顶部居右
左边居中 图片中心 右边居中
例如:想把水印图与原图的右底重合,就把第九项的两个“5”修改为“0”即可,以此类推,如果想把水印的位置往左上移动20像素,则修改为20即可。
以上教程由烈火学院编辑整理,如有不同意见请反馈给咱们。
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。DedeCms 三级栏目获取当前效果解决相关具体操作方法