標籤:
產生文字浮水印<?php//文字浮水印/*開啟圖片*///1.配置圖片路徑$src = "4.jpg";//2.擷取圖片的資訊(得到圖片的基本資料)$info = getimagesize($src );//3.通過擷取圖片類型$type = image_type_to_extension($info[2],false);//4.在記憶體中建立一個圖片類型一樣的映像$fun = "imagecreatefrom{$type}";//5.圖片複製到記憶體中$image = $fun($src);/*操作圖片*///1.設定字型的路徑$font = "STLITI.TTF";//c盤windows/fonts//2.填寫浮水印內容$content = ‘你好‘;//3.設定字型的顏色rgb和透明度$col = imagecolorallocatealpha($image,255,255,255,50);//4.寫入文字imagettftext($image,20,0,20,30,$col,$font,$content);/*輸出圖片*///瀏覽器輸出header("Content-type:{$info[‘mime‘]}");$func = "image{$type}";$func($image);//儲存圖片$func($image,‘newimage.‘.$type);/*銷毀圖片*/imagedestroy($image);?>產生圖片浮水印<?php $dst_path = ‘4.jpg‘;$src_path = ‘1.png‘;//建立圖片的執行個體$dst = imagecreatefromstring(file_get_contents($dst_path));$src = imagecreatefromstring(file_get_contents($src_path));//擷取浮水印圖片的寬高list($src_w, $src_h) = getimagesize($src_path);//將浮水印圖片複製到靶心圖表片上,最後個參數80是設定透明度,這裡實現半透明效果imagecopymerge($dst, $src, 10, 10, 0, 0, $src_w, $src_h, 80);//如果浮水印圖片本身帶透明色,則使用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://GIFheader(‘Content-Type: image/gif‘);imagegif($dst);break;case 2://JPGheader(‘Content-Type: image/jpeg‘);imagejpeg($dst);break;case 3://PNGheader(‘Content-Type: image/png‘);imagepng($dst);break;default:break;}imagedestroy($dst);imagedestroy($src);?>
php產生文字浮水印和圖片浮水印