php 限定区域自动调整字体大小的类

前端之家收集整理的这篇文章主要介绍了php 限定区域自动调整字体大小的类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP在限定的区域里自动调整字体大小的PHP类 imagefittext.class.PHP感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

<?PHP
/**
 * PHP在限定的区域里自动调整字体大小的PHP类 imagefittext.class.PHP
 *
 * @param 
 * @author 编程之家 jb51.cc jb51.cc
 **/
// Image Fit Text Class 0.1 by ming0070913 
CLASS ImageFitText{ 
	public $font,$fontsize,$width,$height; 
	public $step_wrap,$step_fontsize; 
	public function __construct($font,$step_wrap=1,$step_fontsize=1){ 
		$this->font = $font; 
		$this->step_wrap = $step_wrap>1?$step_wrap:1; 
		$this->step_fontsize = $step_fontsize>1?$step_fontsize:1; 
	} 
	function fit($width,$height,$text,$min_fontsize=5,$min_wraplength=0){ 
		$this->fontsize = & $fontsize; 
		$text_ = $text; 
		while($this->TextHeight($text_)>$height && $fontsize>$min_fontsize) 
			$fontsize -= $this->step_fontsize; 
		while(($this->TextWidth($text_)>$width || $this->TextHeight($text_)>$height) && $fontsize>$min_fontsize){ 
			$fontsize -= $this->step_fontsize; 
			$wraplength = $this->maxLen($text); 
			$text_ = $text; 
			while($this->TextWidth($text_)>$width && $wraplength>=$min_wraplength+$this->step_wrap){ 
				$wraplength -= $this->step_wrap; 
				$text_ = wordwrap($text,$wraplength,"\n",true); 
				//To speed up: 
				if($this->TextHeight($text_)>$height) break; 
				if($wraplength<=$min_wraplength) break; 
				$wraplength_ = $wraplength; 
				$wraplength = ceil($wraplength/($this->TextWidth($text_)/$width)); 
				$wraplength = $wraplength<($min_wraplength+$this->step_wrap)?($min_wraplength+$this->step_wrap):$wraplength; 
			} 
		} 
		$this->width = $this->TextWidth($text_); 
		$this->height = $this->TextHeight($text_); 
		return array("fontsize"=>$fontsize,"text"=>$text_,"width"=>$this->width,"height"=>$this->height); 
	}
	function maxLen($text){ 
		$lines = explode("\n",str_replace("\r","",$text)); 
		foreach($lines as $line) 
			$t[] = strlen($line); 
		return max($t); 
	}
	function TextWidth($text){ 
		$t = imagettfbBox($this->fontsize,$this->font,$text); 
		return $t[2]-$t[0]; 
	}
	function TextHeight($text){ 
		$t = imagettfbBox($this->fontsize,$text); 
		return $t[1]-$t[7]; 
	} 
} 

/***   来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/528732.html

猜你在找的PHP相关文章