我想创建一些给定文本的透明png。我不想指定图像的宽度和高度,但是它会自动调整大小到文本的大小。我已经尝试过imagemagick和PHP,但是,还没有完全得到它。我如何使用这些技术或任何其他技术?另外,为什么一种技术比另一种更好?
imagemagick解决方案
工作,但需要指定图像大小,而不是自动调整大小到文本大小。
convert -size 560x85 xc:transparent -font Palatino-Bold -pointsize 72 -fill black -stroke red -draw "text 20,55 'Linux and Life'" linuxandlife.png
PHP解决方案
除了右侧有点剁之外的作品。另外,如果我使用相同字体大小和字体类型的文本制作多个图像,并且它们都有大写字母,那么图像的高度并不完全相同,但我希望它们是相同的。此外,今天第一次玩图像功能,如果我做其他不正确的事,请告诉我。
<?php
$font_size = 11;
$angle=0;
//$fonttype="/usr/share/fonts/liberation/LiberationMono-Regular.ttf";
$fonttype="/usr/share/fonts/dejavu/DejaVuSans.ttf";
$text='Some text';
$file='MyFile.png';
$bbox = imagettfbbox($font_size, $angle, $fonttype, $text);
$x1 = $bbox[2] - $bbox[0];
$y1 = $bbox[1] - $bbox[7];
$im = @imagecreatetruecolor($x1, $y1);
imagesavealpha($im, true);
imagealphablending($im, false);
$color_background = imagecolorallocatealpha($im, 255, 255, 255, 127);
imagefill($im, 0, 0, $color_background);
$color_text = imagecolorallocate($im, 255, 0, 0);
imagettftext($im, $font_size, $angle, 0, $font_size, $color_text, $fonttype, $text);
imagepng($im,$file);
imagedestroy($im);
?>
答案 0 :(得分:0)
我会选择纯php解决方案,所以你不依赖于像imagemagick这样的外部库。
如果您使用浏览器缓存,也许这是一个好主意,因此您不必在每次请求时生成图像。
您必须在“imagettfbbox”之前添加以下代码,并将图像生成代码放入ELSE。
$string = $text . filemtime($file);
$eTag = md5($string);
header("ETag: ".$eTag);
$httpModEtag = !empty($_SERVER['HTTP_IF_NONE_MATCH'])? $_SERVER['HTTP_IF_NONE_MATCH']:"";
if($httpModEtag===$eTag)
{
// tells the browser to use his cached image
header("HTTP/1.1 304 Not Modified", true, 304);
}
else
{
// tells the browser to refresh the cache
header("Cache-Controll: must-revalidate");
// ------ Place your Image Generation code here -------
}