<?php /*
* 中文圆形印章类
* @author lkk/lianq.net
* @example:
* $seal = new circleSeal('你我他坐站走东西南北中',75,6,24,0,0,16,40);
* $seal->doImg();
*/
class circleSeal {
private $sealString; //印章字符
private $strMaxLeng; //最大字符长度
private $sealRadius; //印章半径
private $rimWidth; //边框厚度
private $innerRadius; //内圆半径
private $startRadius; //五角星半径
private $startAngle; //五角星倾斜角度
private $backGround; //印章颜色
private $centerDot; //圆心坐标
private $img; //图形资源句柄
private $font; //指定的字体
private $fontSize; //指定字体大小
private $width; //图片宽度
private $height; //图片高度
private $points; //五角星各点坐标
private $charRadius; //字符串半径
private $charAngle; //字符串倾斜角度
private $spacing; //字符间隔角度
//构造方法
public function __construct($str ='', $rad = 75, $rmwidth = 6, $strad = 24, $stang = 0, $crang = 0, $fsize = 16, $inrad =0){
$this->sealString = empty($str) ? '印章测试字符串' : $str;
$this->strMaxLeng = 12;
$this->sealRadius = $rad;
$this->rimWidth = $rmwidth;
$this->startRadius = $strad;
$this->startAngle = $stang;
$this->charAngle = $crang;
$this->centerDot = array('x'=>$rad, 'y'=>$rad);
$this->font = dirname(__FILE__) .'/simkai.ttf';
$this->fontSize = $fsize;
$this->innerRadius = $inrad; //默认0,没有
$this->spacing = 1;
}
//创建图片资源
private function createImg(){
$this->width = 2 * $this->sealRadius;
$this->height = 2 * $this->sealRadius;
$this->img = imagecreate($this->width, $this->height);
imagecolorresolvealpha($this->img,255,255,255,127);
$this->backGround = imagecolorallocate($this->img,255,0,0);
}
//画印章边框
private function drawRim(){
for($i=0;$irimWidth;$i++){
imagearc($this->img,$this->centerDot['x'],$this->centerDot['y'],$this->width - $i,$this->height - $i,0,360,$this->backGround);
}
}
//画内圆
private function drawInnerCircle(){
imagearc($this->img,$this->centerDot['x'],$this->centerDot['y'],2*$this->innerRadius,2*$this->innerRadius,0,360,$this->backGround);
}
//画字符串
private function drawString(){
//编码处理
$charset = mb_detect_encoding($this->sealString);
if($charset != 'UTF-8'){
$this->sealString = mb_convert_encoding($this->sealString, 'UTF-8', 'GBK');
}
//相关计量
$this->charRadius = $this->sealRadius - $this->rimWidth - $this->fontSize; //字符串半径
$leng = mb_strlen($this->sealString,'utf8'); //字符串长度
if($leng > $this->strMaxLeng) $leng = $this->strMaxLeng;
$avgAngle = 360 / ($this->strMaxLeng); //平均字符倾斜度
//拆分并写入字符串
$words = array(); //字符数组
for($i=0;$isealString,$i,1,'utf8');
$r = 630 + $this->charAngle + $avgAngle*($i - $leng/2) + $this->spacing*($i-1); //坐标角度
$R = 720 - $this->charAngle + $avgAngle*($leng-2*$i-1)/2 + $this->spacing*(1-$i); //字符角度
$x = $this->centerDot['x'] + $this->charRadius * cos(deg2rad($r)); //字符的x坐标
$y = $this->centerDot['y'] + $this->charRadius * sin(deg2rad($r)); //字符的y坐标
imagettftext($this->img, $this->fontSize, $R, $x, $y, $this->backGround, $this->font, $words[$i]);
}
}
//画五角星
private function drawStart(){
$ang_out = 18 + $this->startAngle;
$ang_in = 56 + $this->startAngle;
$rad_out = $this->startRadius;
$rad_in = $rad_out * 0.382;
for($i=0;$ipoints[] = $rad_out * cos(2*M_PI/5*$i - deg2rad($ang_out)) + $this->centerDot['x'];
$this->points[] = $rad_out * sin(2*M_PI/5*$i - deg2rad($ang_out)) + $this->centerDot['y'];
//内凹的点坐标
$this->points[] = $rad_in * cos(2*M_PI/5*($i+1) - deg2rad($ang_in)) + $this->centerDot['x'];
$this->points[] = $rad_in * sin(2*M_PI/5*($i+1) - deg2rad($ang_in)) + $this->centerDot['y'];
}
imagefilledpolygon($this->img, $this->points, 10, $this->backGround);
}
//输出
private function outPut(){
header('Content-type:image/png');
imagepng($this->img);
imagedestroy($this->img);
}
//对外生成
public function doImg(){
$this->createImg();
$this->drawRim();
$this->drawInnerCircle();
$this->drawString();
$this->drawStart();
$this->outPut();
}
}
0
0
本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门AI工具
相关专题
Go语言测试体系与代码质量保障聚焦于构建工程级可靠性系统。本专题深入解析Go的测试工具链(如go test)、单元测试、集成测试及端到端测试实践,结合代码覆盖率分析、静态代码扫描(如go vet)和动态分析工具,建立全链路质量监控机制。通过自动化测试框架、持续集成(CI)流水线配置及代码审查规范,实现测试用例管理、缺陷追踪与质量门禁控制,确保代码健壮性与可维护性,为高可靠性工程系统提供质量保障。
6
2026.02.28
Go语言工程化架构设计专注于构建高可维护性、可演进的企业级系统。本专题深入探讨Go项目的目录结构设计、模块划分、依赖管理等核心架构原则,涵盖微服务架构、领域驱动设计(DDD)在Go中的实践应用。通过实战案例解析接口抽象、错误处理、配置管理、日志监控等关键工程化技术,帮助开发者掌握构建稳定、可扩展Go应用的最佳实践方法。
6
2026.02.28
Go语言以其高效的并发模型和优异的性能表现广泛应用于高并发、高性能场景。其运行时机制包括 Goroutine 调度、内存管理、垃圾回收等方面,深入理解这些机制有助于编写更高效稳定的程序。本专题将系统讲解 Golang 的性能分析工具使用、常见性能瓶颈定位及优化策略,并结合实际案例剖析 Go 程序的运行时行为,帮助开发者掌握构建高性能应用的关键技能。
8
2026.02.28
本专题系统讲解 Golang 并发编程模型,从语言级特性出发,深入理解 goroutine、channel 与调度机制。结合工程实践,分析并发设计模式、性能瓶颈与资源控制策略,帮助将并发能力有效转化为稳定、可扩展的系统性能优势。
14
2026.02.27
本专题深入剖析 Golang 的高级特性与工程级最佳实践,涵盖并发模型、内存管理、接口设计与错误处理策略。通过真实场景与代码对比,引导从“可运行”走向“高质量”,帮助构建高性能、可扩展、易维护的优雅 Go 代码体系。
17
2026.02.27
本专题聚焦 Golang 的测试与调试体系,系统讲解单元测试、表驱动测试、基准测试与覆盖率分析方法,并深入剖析调试工具与常见问题定位思路。通过实践示例,引导建立可验证、可回归的工程习惯,从而持续提升代码可靠性与可维护性。
2
2026.02.27
AO3官网最新入口合集,汇总2026年可用官方及镜像链接,助你快速稳定访问Archive of Our Own平台。阅读专题下面的文章了解更多详细内容。
208
2026.02.27
热门下载
精品课程



