我想创建一些给定文本的透明 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);
?>