thinkphp实现图片裁剪并生成圆形图片
结合以下两个网站的内容实现
1裁剪图片
http://jsfiddle.net/alexk111/rw6q9/
2thinkphp生成圆形图片
https://www.zhaokeli.com/article/8030.html
3整合
裁剪图片后发现是data:png所以需要以下代码保存图片到本地
$imgdata = substr($imgstr,strpos($imgstr,",") + 1);
$decodedData = base64_decode($imgdata);
$r = rand(0,100);
$img_path = "/".date('YmdHis').$r.".png";
file_put_contents($img_path,$decodedData );
$imgg = yuan_img($img_path);
imagepng($imgg,$img_path);
上传完图片可以自动生成到指定目录去$img_path
如下图所示