我正在制作一个模因生成器,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);
答案 0 :(得分:5)
$text_top = strip_tags(trim(html_entity_decode($_POST['text_top'], ENT_QUOTES, 'UTF-8'), "\xc2\xa0"));
好像你的字符串是html编码的。
修改强>
添加了对UTF-8编码的支持。这样,非破坏空间会被正确修剪,而不是给出?
。
来自PHP的html_entity_decode
文档:
注意:
你可能想知道为什么修剪(html_entity_decode(''));不 将字符串减少为空字符串,这是因为'' 实体不是ASCII代码32(由trim()剥离)但是ASCII 默认ISO 8859-1编码中的代码160(0xa0)。
答案 1 :(得分:0)
尝试使用这个小解决方案:
$str = trim($_POST['text_top']);
$clean = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $str);
如果拳头不能正常试试这个:
$str = trim($_POST['text_top']);
$clean = iconv('UTF-8', 'ASCII//TRANSLIT', $str);
$clean = preg_replace("/[^a-zA-Z0-9\/_| -]/", '', $clean);
$clean = strtolower(trim($clean, '-'));
$clean = preg_replace("/[\/_| -]+/", '-', $clean);