PHP教程

php 图片加文字加图片实现盖章,证书

本文主要是介绍php 图片加文字加图片实现盖章,证书,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

具体实现代码请查看码云仓库

居中显示,定位显示,文字加粗,字体间距,

php图片加文字加logo: 实现文字加图片,加文字,从而实现工作中盖章,证书等的生成

注意点:linux服务器,需要把字体的后缀ttf 改为统一的 要么全大写,要么全小写

/**
*统计纯中文文字字数,此前搜索了好多,大多不好使,终于一个可以用的
*/
function ccChinaStrLen($string){
      $j = 0; 
		for($i=1;$i <strlen($string);$i++) 
		{ 
			if(ord(substr($string,$i,1))> 0xa0){
				$j++;
				$i++;			
			}	
		}
		return $j;
}
    /**
	* 设置字体间距,支持中文无乱码
	*/
	function imagettftextSp_bak($image, $size, $angle, $x, $y, $color, $font, $text, $spacing = 0){
		if ($spacing == 0){
			imagettftext($image, $size, $angle, $x, $y, $color, $font, $text);
		}else{
		
            for ($i = 0; $i <strlen($text); $i++){ 
				$arr = imagettftext ($image, $size,0, $x, $y, $color, $font, mb_substr($text,$i,1)); 
				$x = $arr[4]+$spacing; 
			}  
		}

	}

function getBBoxW($bBox){
	  return $bBox[2] - $bBox[0];
}

//设置字体间距不支持中文,有乱码
function imagettftextSp($image, $size,$angle, $x, $y, $color, $font, $text, $spacing = 0)
	{
		$testStr = 'test';
		$testW   = $this->getBBoxW(imagettfbbox($size, 0, $font, $testStr));
		//$tool = mb_str_split($text);
		foreach (str_split($text) as $char){
			$fullBox = imagettfbbox($size, 0, $font, $char . $testStr);
			imagettftext($image, $size, $angle, $x - $fullBox[0], $y, $color, $font, $char);
			$x += $spacing + $this->getBBoxW($fullBox) - $testW;
		}
	}

这篇关于php 图片加文字加图片实现盖章,证书的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!