欢迎来到润旭源码网
帮助中心

润旭源码网

热门搜索: 企业源码    免费源码   

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

  • 时间:2020-07-12 10:45 编辑: 来源: 阅读:152
  • 扫一扫,手机访问
摘要:在织梦默认的水印位置上是和图片的边缘有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;

在织梦默认的水印位置上是和图片的边缘有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”。

 


  • 全部评论(0)
资讯详情页最新发布上方横幅
联系我们

QQ:888477 {点击直接联系}

邮箱:runxu123@qq.com

时间:周1——周6 【9:00-23:00

联系客服
购买源码 源码咨询 投诉建议 联系客服
0373-6621888
手机版

扫一扫进手机版
返回顶部