常州網(wǎng)站價格免費留電話的廣告
?可以用這方法生成圖片 水印 字體可以在資源綁定下載,如果字體路徑不對,則不會輸出文字圖片?
? public function generateImage($text,$id)
? ? {
? ? ? ? header("Cache-Control: no-cache, must-revalidate");
? ? ? ? header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
? ? ? ?
? ? ? ? // 設(shè)置內(nèi)容類型為PNG
? ? ? ? header("Content-type: image/png");
? ? ? ? // 創(chuàng)建一個120x40的圖像
? ? ? ? $width = 200;
? ? ? ? $height = 40;
? ? ? ? $image = imagecreatetruecolor($width, $height);
? ? ? ? // 設(shè)置背景色
? ? ? ? $backgroundColor = imagecolorallocate($image, 255, 255, 255);
? ? ? ? imagefill($image, 0, 0, $backgroundColor);
? ? ? ? // 設(shè)置文字顏色
? ? ? ? $textColor = imagecolorallocate($image, 217, 217, 242);
? ? ? ? // 設(shè)置字體文件路徑
? ? ? ? $path = ROOT_PATH;
? ? ? ? $fontFile = $path.'public/static/admin/fonts/iconfont/simhei.ttf'; // 替換為實際字體文件路徑' //注意直接跟圖片地址就好
? ? ? ? // 生成文字
? ? ? ?// $text = "dfsd代發(fā)收到";
? ? ? ? // 繪制文
? ? ? ? imagettftext($image, 14, 0, 10, 30, $textColor, $fontFile, $text);
? ? ? ? $imagePath = $path.'public/upload/shuiyin/'.$id.'.png'; // 替換為你的保存路徑
? ? ? ? // 輸出圖像
? ? ? ?imagepng($image,$imagePath); //保存圖片
? ? ? ? // ? imagepng($image);//輸出到瀏覽器
? ? ? ? // 銷毀圖像資源
? ? ? ? imagedestroy($image);
? ? }