国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > PHP > 正文

php文字水印和php圖片水印實(shí)現(xiàn)代碼(二種加水印方

2020-03-24 18:55:25
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
文字水印文字水印就是在圖片上加上文字,主要使用gd庫(kù)的imagefttext方法,并且需要字體文件。效果圖如下:

實(shí)現(xiàn)代碼如下:復(fù)制代碼 代碼如下:
$dst_path = 'dst.jpg';//創(chuàng)建圖片的實(shí)例
$dst = imagecreatefromstring(file_get_contents($dst_path));//打上文字
$font = './simsun.ttc';//字體
$black = imagecolorallocate($dst, 0x00, 0x00, 0x00);//字體顏色
imagefttext($dst, 13, 0, 20, 20, $black, $font, '快樂(lè)編程');//輸出圖片
list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);
switch ($dst_type) {
case 1://GIF
header('Content-Type: image/gif');
imagegif($dst);
break;
case 2://JPG
header('Content-Type: image/jpeg');
imagejpeg($dst);
break;
case 3://PNG
header('Content-Type: image/png');
imagepng($dst);
break;
default:
break;
}imagedestroy($dst);
圖片水印圖片水印就是將一張圖片加在另外一張圖片上,主要使用gd庫(kù)的imagecopy和imagecopymerge。效果圖如下:

實(shí)現(xiàn)代碼如下:復(fù)制代碼 代碼如下:
$dst_path = 'dst.jpg';
$src_path = 'src.jpg';//創(chuàng)建圖片的實(shí)例
$dst = imagecreatefromstring(file_get_contents($dst_path));
$src = imagecreatefromstring(file_get_contents($src_path));//獲取水印圖片的寬高
list($src_w, $src_h) = getimagesize($src_path);//將水印圖片復(fù)制到目標(biāo)圖片上,最后個(gè)參數(shù)50是設(shè)置透明度,這里實(shí)現(xiàn)半透明效果
imagecopymerge($dst, $src, 10, 10, 0, 0, $src_w, $src_h, 50);
//如果水印圖片本身帶透明色,則使用imagecopy方法
//imagecopy($dst, $src, 10, 10, 0, 0, $src_w, $src_h);//輸出圖片
list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);
switch ($dst_type) {
case 1://GIF
header('Content-Type: image/gif');
imagegif($dst);
break;
case 2://JPG
header('Content-Type: image/jpeg');
imagejpeg($dst);
break;
case 3://PNG
header('Content-Type: image/png');
imagepng($dst);
break;
default:
break;
}imagedestroy($dst);
imagedestroy($src);
PHP教程

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 林西县| 正镶白旗| 泸溪县| 增城市| 金华市| 太原市| 新晃| 岫岩| 屏东县| 蓬莱市| 威远县| 长寿区| 乌兰浩特市| 托里县| 容城县| 尖扎县| 林口县| 滨州市| 栾川县| 闸北区| 平罗县| 房山区| 台东县| 诸暨市| 天台县| SHOW| 孟村| 仙游县| 徐闻县| 福泉市| 承德县| 塔河县| 榕江县| 六安市| 武胜县| 民勤县| 昌宁县| 金堂县| 正定县| 肃南| 徐州市|