Metnin büyüklüğüne göre görüntü boyutunu yeniden boyutlandırma

2 Cevap php

PHP kodu aşağıda bir dinamik olarak oluşturulan görüntü olarak metin üretir, nasıl ben sadece metin olarak büyük olması görüntüyü elde etmek mümkün olacaktır? Teşekkürler.

<?php
    header('Content-Type: image/jpeg');

    $text='Test';

    $img = imageCreate(200,200);

    imagecolorallocate($img, 255, 255, 255);

    $textColor = imagecolorallocate($img, 0, 0, 0); 

    imagefttext($img, 15, 0, 0, 55, $textColor, 'bgtbt.ttf', $text);

    imagejpeg($img);

    imagedestroy($img);
?>

GÜNCELLEME 1: Ben orijinal poster örneği ile burada cevabını buldu - http://stackoverflow.com/questions/1097583/creating-image-from-text-in-php-how-can-i-make-multiline

GÜNCELLEME 2: Martin GEISLER versiyonu da iyi çalışıyor

2 Cevap

TrueType yazı tipini kullanarak zaman, imageftbbox function to obtain the bounding box for a string typeset with your font. The bounding box gives the offsets from the base-point to the four corners in the rectangle occupied by the text. So if you store the bounding box in $bb kullanın ve ($x, $y) de metni koymak için imagefttext kullanın, daha sonra köşeleri bu olacaktır koordinatları:

($x + $bb[6], $y + $bb[7])         ($x + $bb[4], $y + $bb[5])
                          +-------+
                          | Hello |
                          +-------+
($x + $bb[0], $y + $bb[1])         ($x + $bb[2], $y + $bb[3])

Yani biz ($x + $bb[2]) - ($x + $bb[6]) = $bb[2] - $bb[6] bir görüntü genişlik ve $bb[3] - $bb[7] benzer şekilde bir görüntü yüksekliği istediğiniz söyler. Biz istiyoruz beri metin daha sonra o resmin içine koordinatları (-$bb[6], -$bb[7]) işlenir olmalıdır

(0, 0) = ($x + $bb[6], $y + $bb[7]) ==> $x = -$bb[6]  and $y = -$bb[7]

Bu kod ile bunu deneyebilirsiniz. img.php adlı bir dosyaya koymak ve test etmek için img.php?q=Hello gözatın:

<?php
header("Content-type: image/png");

$q     = $_REQUEST['q'];
$font  = "Impact.ttf";
$size  = 30;
$bbox   = imageftbbox($size, 0, $font, $q);

$width  = $bbox[2] - $bbox[6];
$height = $bbox[3] - $bbox[7];

$im    = imagecreatetruecolor($width, $height);
$green = imagecolorallocate($im, 60, 240, 60);

imagefttext($im, $size, 0, -$bbox[6], -$bbox[7], $green, $font, $q);
imagepng($im);
imagedestroy($im);
?>


Yerine bitmap fontları kullanırsanız, o zaman imagefontwidth and imagefontheight işlevlerine bakıyoruz.

@ Martin GEISLER cevabı neredeyse doğru, ama ben görüntü içinde tamamen sığacak benim metin alamadım. Ben mükemmel çalışıyor, bunun yerine bu çalıştı!

Kimden PHP Manual's User Contributed Notes:

$text = "<?php echo \"hello, world\"; ?>";
$font = "./arial.ttf";
$size = "60";

$bbox = imagettfbbox($size, 0, $font, $text);

$width = abs($bbox[2] - $bbox[0]);
$height = abs($bbox[7] - $bbox[1]);

$image = imagecreatetruecolor($width, $height);

$bgcolor = imagecolorallocate($image, 255, 255, 255);
$color = imagecolorallocate($image, 0, 0, 0);

$x = $bbox[0] + ($width / 2) - ($bbox[4] / 2);
$y = $bbox[1] + ($height / 2) - ($bbox[5] / 2);

imagefilledrectangle($image, 0, 0, $width - 1, $height - 1, $bgcolor);
imagettftext($image, $size, 0, $x, $y, $color, $font, $text);

$last_pixel= imagecolorat($image, 0, 0);

for ($j = 0; $j < $height; $j++)
{
    for ($i = 0; $i < $width; $i++)
    {
        if (isset($blank_left) && $i >= $blank_left)
        {
            break;
        }

        if (imagecolorat($image, $i, $j) !== $last_pixel)
        {
            if (!isset($blank_top))
            {
                $blank_top = $j;
            }
            $blank_left = $i;
            break;
        }

        $last_pixel = imagecolorat($image, $i, $j);
    }
}

$x -= $blank_left;
$y -= $blank_top;

imagefilledrectangle($image, 0, 0, $width - 1, $height - 1, $bgcolor);
imagettftext($image, $size, 0, $x, $y, $color, $font, $text);

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