From 960f7720beb662afef4a2f756883374481494cc0 Mon Sep 17 00:00:00 2001 From: Dai Date: Mon, 9 Sep 2024 15:39:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=99=E5=B8=88=E6=97=B6=E9=97=B4=E8=A1=A8?= =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/TeacherScheduleTimeController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/controller/TeacherScheduleTimeController.php b/app/api/controller/TeacherScheduleTimeController.php index 8532f7f..fa8b7dc 100644 --- a/app/api/controller/TeacherScheduleTimeController.php +++ b/app/api/controller/TeacherScheduleTimeController.php @@ -159,7 +159,7 @@ class TeacherScheduleTimeController extends BaseController //居中写入标题 imagettftext($img, $base['title_font_size'], 0, ($base['img_width'] - $title_fout_width) / 2, $base['title_height'], $text_coler, $base['font_ulr'], $params['title']); //写入制表时间 - imagettftext($img, $base['text_size'], 0, $base['border'], $base['title_height'], $text_coler, $base['font_ulr'], '时间:' . $params['table_time']); + imagettftext($img, $base['text_size'], 0, $base['border'], $base['title_height'], $text_coler, $base['font_ulr'], 'Date:' . $params['table_time']); $save_path = $base['file_path'] . $params['file_name']; if (!is_dir($base['file_path']))//判断存储路径是否存在,不存在则创建 {