我正在使用 gd-text 将数据库中的文本添加到图像中。
两者(图像/文本)都是由外部类生成的。
继承人的代码:
<?php
//Includes
include 'gdtext/Color.php';
include 'gdtext/Box.php';
include 'class.getSlogan.php';
include 'class.getImage.php';
use GDText\Box;
use GDText\Color;
//Date
$timestamp = time();
$date = date("d.m.Y", $timestamp);
$slogan_txt = dailySlogan();
$img = dailyImage();
//Set Imagepath
$imgPath = '../../images/output/1500_' .$img['imageName'];
//Create Image
$im = imagecreatefromjpeg($imgPath);
//Get X/Y for Box
$image_width = imagesx($im);
$image_height = imagesy($im);
$y = ($image_height / 2 );
$max_x = ($image_width / 2 );
$start = ($max_x / 2);
//Generate Text
$box = new Box($im);
$box->setFontFace('font.TTF');
$box->setFontSize(60);
$box->setFontColor(new Color(255, 255, 255));
$box->setTextShadow(new Color(0, 0, 0, 50), 0, -2);
$box->setBox($start, $y, $max_x, 0);
$box->setTextAlign('center', 'center');
$box->draw($slogan_txt['en']);
// header("Content-Disposition: attachment; filename=\"motivation_" . $date . ".jpg\";");
// header('Content-Type: image/jpeg');
//Save
imagejpeg($im, 'test.jpg');
以下几行用于直接下载并在我试图弄清楚为什么没有添加文本时注释掉。
// header("Content-Disposition: attachment; filename=\"motivation_" . $date . ".jpg\";");
// header('Content-Type: image/jpeg');
创建图像时未添加任何文本。$slogan_txt['en'] 填充了正确的值。此外,x/y 坐标也按应有的方式计算。
服务器上的 PHP 或 apache 日志没有错误。
我错过了什么?我从几个月前编写的脚本中获取了代码,我记得它运行良好。
任何帮助/提示表示赞赏!谢谢!