教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php gd库为页面添加水印实现代码

php gd库为页面添加水印实现代码

发布时间:2018-03-19   编辑:jiaochengji.com
分享一例php gd库为页面添加水印的代码,php gd库生成水印的功能实现,有需要的朋友可以参考下。

本节内容:
php 使用gd库为页面增加水印。

代码:
 

复制代码 代码示例:

<?php
header ("content-type: image/png");
$conn = mysql_connect("localhost", "root", ""); //连接数据库
$colname_rs_article = $_get['id']; //获取参数id

mysql_select_db("cms", $conn); //执行sql
$query_rs_article = sprintf("select * from articles where article_id = %s", $colname_rs_article);
$rs_article = mysql_query($query_rs_article, $conn) or die(mysql_error());
$row_rs_article = mysql_fetch_assoc($rs_article);
$totalrows_rs_article = mysql_num_rows($rs_article);

//php gd库创建水印
$image = imagecreatetruecolor(700, 1000); //创建画布
$bg = imagecolorallocate($image, 255, 255, 255); //设置背景为白色
imagefill($image, 0, 0, $bg);
$text_color = imagecolorallocate($image, 0, 0, 0); //设置文字颜色为黑色
imagestring($image, 5, 0, 0, $row_rs_article['title'], $text_color); //输出文章标题
imagestring($image, 3, 0, 20, $row_rs_article['author'], $text_color); //输出文章作者
imagestring($image, 4, 0, 60, $row_rs_article['content'], $text_color); //输出文章内容
$logo = imagecreatefrompng('logo.png'); //获得水印图片
$logow = imagesx($logo);
$logoh = imagesy($logo);
imagecopy($image, $logo, 0, 0, 0, 0, $logow, $logoh); //合并文字图片与水印图片
imagejpeg($image); // output to browser
imagedestroy($logo);
imagedestroy($image);
?>

您可能感兴趣的文章:
php gd库为页面添加水印实现代码
php gd库的基础知识
简单的php图片上传自动给图片加水印
PHP图片裁剪函数(图像不变形)
Linux下开启PHP GD库支持
php绘图不显示图片怎么办
php程序员面试题及答案(基础理论型)
php图片加水印与上传图片加水印类
php GD库中文乱码的解决方法
php为图片加中文水印的代码

关键词: gd库  php gd  php 图片水印  图片水印   
[关闭]
~ ~