在php中从头创建带有文本的透明png

时间:2011-12-14 10:39:10

标签: php image png image.createimage

我在网上找到的所有示例似乎都是使用现有png中的文本创建png。是否可以从头开始创建透明的png,然后添加文本?​​

到目前为止我已经得到了代码(但它不起作用。只输出空白图像源)

<?php
    $width = 150;
    $height = 30;
    $text = "My Text";
    $fontsize = 5;

    $im = imagecreate($width, $height);
    $transcolor = imagecolortransparent($im);

    imagestring($im, $fontsize, 0, 0, $text, $transcolor);

    header('Content-type: image/png');
    imagepng($im);
    imagedestroy($im);
?>

3 个答案:

答案 0 :(得分:16)

<?php
    $font = 25;
    $string = 'My Text';
    $im = @imagecreatetruecolor(strlen($string) * $font / 1.5, $font);
    imagesavealpha($im, true);
    imagealphablending($im, false);
    $white = imagecolorallocatealpha($im, 255, 255, 255, 127);
    imagefill($im, 0, 0, $white);
    $lime = imagecolorallocate($im, 204, 255, 51);
    imagettftext($im, $font, 0, 0, $font - 3, $lime, "droid_mono.ttf", $string);
    header("Content-type: image/png");
    imagepng($im);
    imagedestroy($im);
?>

如果您不想要自定义字体,请使用imagestring代替imagettftext

答案 1 :(得分:4)

以下是基于原始代码的解决方案。

<?php
    $width = 640;
    $height = 480;
    $text = "My Text";
    $fontsize = 5;

    $img = imagecreate($width, $height);

    // Transparent background
    $black = imagecolorallocate($img, 0, 0, 0);
    imagecolortransparent($img, $black);

    // Red text
    $red = imagecolorallocate($img, 255, 0, 0);
    imagestring($img, $fontsize, 0, 0, $text, $red);

    header('Content-type: image/png');
    imagepng($img);
    imagedestroy($img);
?>

答案 2 :(得分:0)

我认为GD是使用imagettftext生成图像的最受欢迎的工具之一。

 <?php
    $text = 'SOME TEXT';

    $font="c:/windows/Fonts/Latinwd.ttf"; //Load font file for windows

    $im = ImageCreate(700, 140);

    $bla = imagecolorallocate($im, 0, 0, 0);
    imagecolortransparent($im, $bla); //transparent background

    $black = imagecolorallocate($im, 255,255,255);
    ImageTTFText ($im, 38, 0, 10, 40, $black, $font, $text);

    header('Content-Type: image/png');
    ImagePNG($im, 'name.png');
    imagedestroy($im);
    ?>