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

发布时间:2019-11-24编辑:脚本学堂
分享一例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);
?>