3

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

1 回答 1

0

I would choose the pure php solution, so you are not depended on external libs like imagemagick.

Maybe it wohl be a good idea if you would use browser caching, so you don`t ne to generate the images on every request.

Yust add the following code before your 'imagettfbbox' and put your image generation code in the 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 -------
}
于 2013-09-30T06:35:06.327 回答