PHP laravolt/avatar 生成中文头像
原理
avatar 不能生成中文字的主要原因是因为它引入的ttf字体都是适用于英文的,没有适配中文,所以,你找个能适配中文的就好了,如:我这儿使用的就是 msyh.ttf字体。
需要注意的是,msyh.ttf字体文件有15M,比对自动的200K,想想都应该对性能有影响(没测)。
avatar.php config文件调整
// Whether all characters supplied must be replaced with their closest ASCII counterparts
'ascii' => false, //如果调整为true,那么它将适配不到中文
// Image shape: circle or square
'shape' => 'square'