2010-09-09 86 views
6

我使用imagettftext做出条形图,并在顶部各条我想把PHP GD ttftext居中对齐

我会为每个栏的以下变量(这是真正的矩形)

$x1 $y1 $x2 $y2 $imagesx $imagesy $font_size

此外,字号应该减少为字符串长度增加。

alt text

+1

男孩,你是在为一些工作!它有*是PHP吗?有这样好的(和现成的)JavaScript绘图库在那里... – 2010-09-09 18:50:10

+0

我在做一个PHP库,所以... – 2010-09-09 18:53:50

+0

会很高兴有“为样品制作条形码”代码,你可以发布它吗? – Otar 2010-09-14 06:48:44

回答

11

这样做。请记住字体文件“ARIAL.TTF”放置在当前目录下:

<?php 
// Create a 650x150 image and create two colors 
$im = imagecreatetruecolor(650, 150); 
$white = imagecolorallocate($im, 255, 255, 255); 
$black = imagecolorallocate($im, 0, 0, 0); 

// Set the background to be white 
imagefilledrectangle($im, 0, 0, 649, 149, $white); 

// Path to our font file 
$font = './arial.ttf'; 

//test it out 
for($i=2;$i<10;$i++) 
    WriteTextForMe($im, $font, str_repeat($i, $i), -140 + ($i*80), 70 + rand(-30, 30), -160 + (($i+1)*80), 150, $black); 

//this function does the magic 
function WriteTextForMe($im, $font, $text, $x1, $y1, $x2, $y2, $allocatedcolor) 
{ 
    //draw bars 
    imagesetthickness($im, 2); 
    imagerectangle($im, $x1, $y1, $x2, $y2, imagecolorallocate($im, 100,100,100)); 

    //draw text with dynamic stretching 
    $maxwidth = $x2 - $x1; 
    for($size = 1; true; $size+=1) 
    { 
     $bbox = imagettfbbox($size, 0, $font, $text); 
     $width = $bbox[2] - $bbox[0]; 
     if($width - $maxwidth > 0) 
     { 
      $drawsize = $size - 1; 
      $drawX = $x1 + $lastdifference/2; 
      break; 
     } 
     $lastdifference = $maxwidth - $width; 
    } 
    $size--; 
    imagettftext($im, $drawsize, 0, $drawX, $y1 - 2, $allocatedcolor, $font, $text); 
} 

// Output to browser 
header('Content-type: image/png'); 

imagepng($im); 
imagedestroy($im); 
?> 

它使用imagettfbbox函数来获取文本的宽度,然后循环在字体大小以获得正确的大小,其中心并显示它。

因此,它输出以下:

alt text

2

您可以通过计算你的文本的中心PHP的imagettfbbox-function

// define text and font 
$text = 'some bar label'; 
$font = 'path/to/some/font.ttf'; 

// calculate text size (this needs to be adjusted to suit your needs) 
$size = 10/(strlen($text) * 0.1); 

// calculate bar center 
$barCenter = $x1 + ($x2 - $x1)/2; 

// calculate text position (centered) 
$bbox = imagettfbbox($size, 0, $font, $text); 
$textWidth = $bbox[2] - $bbox[0]; 
$positionX = $textWidth/2 + $barCenter; 
$positionY = $y1 - $size; 

编辑:更新的代码来完成所有的工作适合你。

+0

如何正确*你会用它来得到写它的地方,所以它变得居中 – 2010-09-09 18:01:29

+0

我相应地编辑了我的帖子。该代码计算给定文本的中心对齐位置“$ positionX”。 – jwueller 2010-09-09 18:27:41

+0

嗯,让我重新写下这个问题 – 2010-09-09 18:45:37