我正在使用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日志没有错误。
我错过了什么吗?我从几个月前的一个脚本中获取了代码,并且我记得它运行良好。
感谢任何帮助/提示!谢谢!
答案 0 :(得分:0)
我不太清楚为什么,但设置为&#34; font.ttf&#34;从775到777为我工作......