大致步骤:
1、缩放图片 提高效率
2、图片灰度化
立即学习“PHP免费学习笔记(深入)”;
3、根据亮度计算边缘
第三步是最关键的,方法很多 这里采用的直接对比相邻的亮度。
推荐学习:《PHP视频教程》
使用方法:
安装
composer require lizhichao/one-img
登录后复制
使用
$img_path = '1.jpg';
$img = new \OneImg\Border();
$img->setImg($img_path)
->scale(300, 300)
->outline()
->save(); //输出到浏览器登录后复制
效果



代码仓库
https://github.com/lizhichao/doImg






