Blogger Information
Blog 4
fans 0
comment 0
visits 3197
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP给图片添加文字水印实例
何幼英的博客
Original
707 people have browsed it

PHP给图片添加文字水印实例,支持中文文字水印,是否覆盖原图,自定义设置水印背景色、文字颜色、字体等。
11111.jpg
水印类water.class.php

var $Path = "./"; //图片所在目录相对于调用此类的页面的相对路径 
var $FileName = ""; //图片的名字,如“1.jpg” 
var $Text = ""; //图片要加上的水印文字,支持中文 
var $TextColor = "#ffffff"; //文字的颜色,gif图片时,字体颜色只能为黑色 
var $TextBgColor = "#000000"; //文字的背景条的颜色 
var $Font = "c://windows//fonts//simhei.ttf"; //字体的存放目录,相对路径 
var $OverFlag = true; //是否要覆盖原图,默认为覆盖,不覆盖时,自动在原图文件名后+"_water_down",如“1.jpg”=> "1_water_down.jpg" 
var $BaseWidth = 200; //图片的宽度至少要>=200,才会加上水印文字。

调用水印类

include_once 'water.class.php'; 
 
$objImg = new sucaihuoWaterChinese(); 
$objImg->Path = "images/"; 
$objImg->FileName = "1.jpg"; 
$objImg->Text =  iconv('UTF-8','GB2312','素材火www.sucaihuo.com'); ; 
$objImg->Font = "./fonts/simhei.ttf";//字体位置 
$objImg->TextBgColor = "#ffffff";//文字背景颜色 
$objImg->TextColor = "#ffffff";//文字颜色 
$objImg->OverFlag = false;//是否覆盖原图 
 
$objImg->Run();

本文转自:https://www.sucaihuo.com/php/546.html 转载请注明出处!

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post