Home > CMS Tutorial > Empire CMS > body text

How to set transparent watermark in Empire CMS

angryTom
Release: 2019-11-15 13:31:12
Original
1783 people have browsed it

How to set transparent watermark in Empire CMS

Transparent watermarks have many benefits compared to ordinary watermarks. It looks more beautiful and does not take up more space. Here is how to set up Empire CMS transparent watermarks.

1. First modify e/class/gd.php

at about 230 lines, find

//设定图像的混色模式 
imagealphablending($ground_im, true); 
if($isWaterImage)//图片水印 
{ 
    imagecopymerge($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h,$w_pct);//拷贝水印到目标文件 
}
Copy after login

and change it to

//设定图像的混色模式 
imagealphablending($ground_im, true); 
if($isWaterImage)//图片水印 
{ 
    if($water_info[2]==3) { 
    imagecopy($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h);//拷贝水印到目标文件 
}else{ 
    imagecopymerge($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h,$w_pct);//拷贝水印到目标文件 
} 
}
Copy after login

That’s OK

Recommended tutorial: Empire CMS Tutorial

The above is the detailed content of How to set transparent watermark in Empire CMS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template