首页 > CMS > 织梦DEDE > 正文

织梦dede怎么修改图片水印所在的位置

2024-07-12 08:49:24
字体:
来源:转载
供稿:网友
这篇文章主要为大家详细介绍了织梦dede怎么修改图片水印所在的位置,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,有需要的朋友可以收藏方便以后借鉴。

      在织梦默认的水印位置上是和图片的边缘有5个像素的距离,可能也会有很多朋友想要修改水印所在的位置,放在一个自己想要的位置上。修改方法如下:

打开include/image.class.php

找到以下代码:

case 1:$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就是水印的位置,只要修改上面代码中的数据就可以修改水印位置了。

以上9个位置依次对应的也就是“顶部居左、顶部居中、顶部居右、左边居中、图片中心、右边居中、底部居左、底部居中、底部居右”。

例如:

case 9:$x = $imagewidth - $logowidth - 5;$y = $imageheight - $logoheight -5;

如果想要和默认设置的水印位置重合,就要把“5”换成“0”。

以上就是织梦dede怎么修改图片水印所在的位置的全部内容,希望对大家的学习和解决疑问有所帮助,也希望大家多多支持武林网。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表