From e23c299c0d0a7c9d426bc5c4fe4bc796909bb73f Mon Sep 17 00:00:00 2001 From: Bigsk Date: Tue, 14 Apr 2020 21:00:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E5=9C=A8=E9=9D=9EWindows=E5=86=85=E6=A0=B8=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E4=B8=AD=E7=94=9F=E6=88=90=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api.php b/api.php index 5a279ed..44c2c03 100644 --- a/api.php +++ b/api.php @@ -68,11 +68,10 @@ $canvas = imagecreatetruecolor(465, 92);//载入画布 $background = imagecolorallocatealpha($canvas, 0, 0, 0, 127);//设置背景色 imagefill($canvas, 0, 0, $background);//填充透明色 imagecolortransparent($canvas, $background);//设置背景色 -$dir = dirname(__FILE__).'\\';//取得运行目录 -$text_fonts = $dir.'fnt.ttf';//设置字体 +$text_fonts = 'fnt.ttf';//设置字体 $color = imagecolorallocate($canvas, 255, 255, 255);//设置文字颜色 $text_size = 7;//设置文字大小 -$logo_url = $dir.'img.png';//设置源图片目录 +$logo_url = 'img.png';//设置源图片目录 $logo = @file_get_contents($logo_url);//读取源文件 $logo_img = imagecreatefromstring($logo);//解析为图片 imagecopyresampled($canvas, $logo_img, 0, 0, 0, 0, 465, 92, imagesx($logo_img), imagesy($logo_img));//覆盖图层