php畫布,新增字元 文字水印

2021-08-30 06:18:41 字數 2474 閱讀 3380

用到的函式:

//建立

$img = imagecreate(500,500);

//建立完成我們需要向資源填加顏色,需要使用到函式

$顏色變數 = imagecolorallocate ( resource $資源 , int $紅 , int $綠 , int $藍 )

//將顏色新增到背景進行填充

imagefilledrectangle ( resource $資源 , int $點1x軸, int $點1y軸 , int $點2x軸 , int $點2y軸 , int $color )

//畫對角線

imageline($img, 0, 0, 500, 500, $red)

//畫圓

bool imagefilledellipse ( resource $資源 , int $圓心x , int $圓心y , int $圓的寬 , int $圓的高 , int $圓的顏色 )

//圓中間畫矩形

imagefilledrectangle($img,200,200,300,300,$blue);

// 新增字元水印  imagestring
// 新增文字水印  imagettftext($img,30,0,100,100,$rand,$font,$text);
<?php 

//header('content-type:text/html;charset=utf-8;');

//建立

$img = imagecreate(500,500);

//建立完成我們需要向資源填加顏色,需要使用到函式

//$顏色變數 = imagecolorallocate ( resource $資源 , int $紅 , int $綠 , int $藍 )

$red = imagecolorallocate($img,255,0,0);

$green = imagecolorallocate($img,0,255,0);

$blue = imagecolorallocate($img,0,0,255);

$pur = imagecolorallocate($img, 255, 0, 255);

$yellow = imagecolorallocate($img, 121, 72, 0);

$rand = imagecolorallocate($img,44,50,49);

//將顏色新增到背景進行填充

//imagefilledrectangle ( resource $資源 , int $點1x軸, int $點1y軸 , int $點2x軸 , int $點2y軸 , int $color )

imagefilledrectangle($img,0,0,500,500,$green);

//畫對角線

//imageline($img, 0, 0, 500, 500, $red)

imageline($img,0,0,500,500,$red);

imageline($img,0,500,500,0,$blue);

//畫圓

//bool imagefilledellipse ( resource $資源 , int $圓心x , int $圓心y , int $圓的寬 , int $圓的高 , int $圓的顏色 )

imagefilledellipse($img,250,250,200,200,$yellow);

//圓中間畫矩形

imagefilledrectangle($img,200,200,300,300,$blue);

// 新增字元水印 imagestring

// 新增文字水印

$font = 'd:\wamp64\www\php\imagesprocess\fzltcxhjw.ttf'; //最好選用是中文的字型,要不然依然會出現亂碼

$text = "我是xx";

imagettftext($img,30,0,100,100,$rand,$font,$text);

//儲存,名為haha.jpg

//輸出**

echo "

//銷毀資源

imagedestroy($img);

?>

php 文字水印

給加文字水印的方法 dst path dst imagecreatefromstring file get contents dst path imagecreatefromstring 從字串中的影象流新建乙個影象,返回乙個影象標示符,其表達了從給定字串得來的影象 影象格式將自動監測,只要php支...

C 新增文字水印

使用的是itextsharp新增pdf水印,由於是介面動態生成pdf,所以採用的是全部是記憶體流的形式,而且水印是平鋪是。itextsharp版本是5.5 新增傾斜水印 pdf檔案流 水印字串 頁面寬度 頁面高度 public memorystream setwatermark memorystre...

PHP 新增水印

require config.inc.php if isset post send cur time date y m d h i s tmp name img tmp name 求出上傳的名稱字尾 ext name strtolower substr name,strrpos name,strle...