当前位置:首页 > PHP教程 > php应用 > 列表

php实现在限定区域里自动调整字体大小的类实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-20 16:57:53 浏览: 评论:0 

这篇文章主要介绍了php实现在限定区域里自动调整字体大小的类,实例分析了php操作图片及字体的技巧,具有一定参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了php实现在限定区域里自动调整字体大小的类,分享给大家供大家参考,具体如下:

这里的php类imagefittext.class.php实现在限定的区域里自动调整字体大小的功能。

  1. <?php 
  2. // Image Fit Text Class 0.1 by ming0070913 
  3. CLASS ImageFitText{ 
  4.  public $font$fontsize$width$height
  5.  public $step_wrap$step_fontsize
  6.  public function __construct($font$step_wrap=1, $step_fontsize=1){ 
  7.   $this->font = $font
  8.   $this->step_wrap = $step_wrap>1?$step_wrap:1; 
  9.   $this->step_fontsize = $step_fontsize>1?$step_fontsize:1; 
  10.  } 
  11.  function fit($width$height$text$fontsize$min_fontsize=5, $min_wraplength=0){ 
  12.   $this->fontsize = & $fontsize
  13.   $text_ = $text
  14.   while($this->TextHeight($text_)>$height && $fontsize>$min_fontsize
  15.    $fontsize -= $this->step_fontsize; 
  16.   while(($this->TextWidth($text_)>$width || $this->TextHeight($text_)>$height) && $fontsize>$min_fontsize){ 
  17.    $fontsize -= $this->step_fontsize; 
  18.    $wraplength = $this->maxLen($text); 
  19.    $text_ = $text
  20.    while($this->TextWidth($text_)>$width && $wraplength>=$min_wraplength+$this->step_wrap){ 
  21.     $wraplength -= $this->step_wrap; 
  22.     $text_ = wordwrap($text$wraplength"\n", true); 
  23.     //To speed up: 
  24.     if($this->TextHeight($text_)>$heightbreak
  25.     if($wraplength<=$min_wraplengthbreak
  26.     $wraplength_ = $wraplength
  27.     $wraplength = ceil($wraplength/($this->TextWidth($text_)/$width)); 
  28.     $wraplength = $wraplength<($min_wraplength+$this->step_wrap)?($min_wraplength+$this->step_wrap):$wraplength
  29.    } 
  30.   } 
  31.   $this->width = $this->TextWidth($text_); 
  32.   $this->height = $this->TextHeight($text_); 
  33.   return array("fontsize"=>$fontsize"text"=>$text_"width"=>$this->width, "height"=>$this->height); 
  34.  } 
  35.  function maxLen($text){ 
  36.   $lines = explode("\n"str_replace("\r"""$text)); 
  37.   foreach($lines as $line
  38.    $t[] = strlen($line); 
  39.   return max($t); 
  40.  } 
  41.  function TextWidth($text){ 
  42.   $t = imagettfbbox($this->fontsize, 0, $this->font, $text); 
  43.   return $t[2]-$t[0]; 
  44.  } 
  45.  function TextHeight($text){ 
  46.   $t = imagettfbbox($this->fontsize, 0, $this->font, $text); 
  47.   return $t[1]-$t[7]; 
  48.  } 
  49. ?> 

使用范例如下:

  1. <?php 
  2. // Image Fit Text Class 0.1 by ming0070913 
  3. // Example File 
  4. include "imagefittext.class.php"
  5. // Settings : 
  6. // The text 
  7. $text = "PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual."
  8. // The maximun width 
  9. $width = 200; 
  10. // The maximun height 
  11. $height = 100; 
  12. // Position of the text and the box 
  13. $x1 = 50; 
  14. $y1 = 50; 
  15. // The starting font size 
  16. $fontsize = 10; 
  17. // The minimun font size. The script will stop if it cannot fit the text even with this size. 
  18. $min_fontsize = 3; 
  19. // The minimun wrap length for each line. The script will try another font size if it cannot fit the text even with this wrap length. 
  20. $min_wraplength = 0; 
  21. // The font 
  22. $font = "arial.ttf"
  23. // The space between the box and the text. It's independent to the script which can be ignored 
  24. $padding = 3; 
  25. // If the script cannot fit the text for certain wrap length, it will try the wrap length again with the reduction in this value. 
  26. // It reduce the accuracy, but will slightly speed up the process. 
  27. $step_wrap = 1; 
  28. // If the script cannot fit the text for certain font size, it will try the the font size again with the reduction in this value. 
  29. // It reduce the accuracy, but will slightly speed up the process. 
  30. $step_fontsize = 1; 
  31. // Create a image 
  32. $im = @imagecreatetruecolor($width+$x1*2, $height+$y1*2+80) or die('Cannot Initialize new GD image stream'); 
  33. // Start the timer 
  34. $time_start = microtime_float(); 
  35. // The class 
  36. $imagefittext = new ImageFitText($font$step_wrap$step_fontsize); 
  37. // Fit the text 
  38. // It returns the result in a array with "fontsize", "text", "width", "height" 
  39. $fit = $imagefittext->fit($width-$padding*2, $height-$padding*2, $text$fontsize$min_fontsize$min_wraplength); 
  40. // Stop the timer 
  41. $time = round(microtime_float()-$time_start, 3); 
  42. $white = imagecolorallocate($im, 255, 255, 255); 
  43. // Draw a box 
  44. imagerectangle($im$x1$y1$x1+$width$y1+$height$white); 
  45. // Write the text            +8 because the text will move up originally 
  46. imagettftext($im$fit['fontsize'], 0, $x1+$padding$y1+$padding+8, $white$font$fit['text']); 
  47. // Print some info. about the text 
  48. imagestring($im, 5, $x1$y1+$height+30, 'Fontsize : '.$fit['fontsize'], $white); 
  49. imagestring($im, 5, $x1$y1+$height+45, 'Text Size : '.$fit['width']."x".$fit['height'], $white); 
  50. imagestring($im, 5, $x1$y1+$height+60, 'Box Size : '.($width-$padding*2)."x".($height-$padding*2), $white); 
  51. imagestring($im, 5, $x1$y1+$height+75, 'Time used : '.$time.'s'$white); 
  52. // Print the image 
  53. header ('Content-Type: image/png'); 
  54. imagepng($im); 
  55. imagedestroy($im); 
  56. function microtime_float(){ // Timer 
  57.  list($usec$sec) = explode(" ", microtime()); 
  58.  return ((float)$usec + (float)$sec); 
  59. ?>

Tags: php自动调整字体大小

分享到: