我正在制作一个模因生成器,Imagick 生成图像。我的问题是,即使我对用于图像的字符串进行了一些操作,输出也不正确。
举例:
$_POST['text_top'] = " test test<br>"; //(starts with a space)
然后我做:
$text_top = strip_tags(trim($_POST['text_top']));
但是在 $text_top 的显示上,将变量粘贴到图像上后,我得到:
 test test<br>
如果我调用 strip_tags 和 trim,为什么会发生这种情况,从我看到的情况来看,是正确的并且像往常一样?
全部采用 UTF8 编码。
谢谢!
编辑:(完整代码)
function wordWrapAnnotation(&$image, &$draw, $text, $maxWidth)
{
$words = explode(" ", $text);
$lines = array();
$i = 0;
$lineHeight = 0;
while($i < count($words) )
{
$currentLine = $words[$i];
if($i+1 >= count($words))
{
$lines[] = $currentLine;
break;
}
//Check to see if we can add another word to this line
$metrics = $image->queryFontMetrics($draw, $currentLine . ' ' . $words[$i+1]);
while($metrics['textWidth'] <= $maxWidth)
{
//If so, do it and keep doing it!
$currentLine .= ' ' . $words[++$i];
if($i+1 >= count($words))
break;
$metrics = $image->queryFontMetrics($draw, $currentLine . ' ' . $words[$i+1]);
}
//We can't add the next word to this line, so loop to the next line
$lines[] = $currentLine;
$i++;
//Finally, update line height
if($metrics['textHeight'] > $lineHeight)
$lineHeight = $metrics['textHeight'];
}
return array($lines, $lineHeight);
}
$text_top = strip_tags(trim($_REQUEST['text_top']));
$text_bottom = strip_tags(trim($_REQUEST['text_bottom']));
$id_base = trim($_REQUEST['id_base']);
/* Création d'un nouvel objet imagick */
$im = new Imagick($_REQUEST['image']);
/* Création d'un nouvel objet imagickdraw */
$draw = new ImagickDraw();
/* Définition de la taille du texte à 52 */
$draw->setFontSize(52);
$draw->setTextAlignment(2);
$draw->setFont("impact.ttf");
$draw->setFillColor('white');
$draw->setStrokeColor("black");
$draw->setStrokeWidth(1);
/* Ajout d'un texte */
//$draw->annotation($im->getImageWidth()/2, 50, $text);
list($lines, $lineHeight) = wordWrapAnnotation($im, $draw, stripslashes($text_top), $im->getImageWidth());
$posY= 50;
for($i = 0; $i < count($lines); $i++){
$draw->annotation($im->getImageWidth()/2, $posY + $i*$lineHeight, $lines[$i]);
}
$im->drawImage($draw);