laravel 使用 intervention/image 的注意方法
出错NotSupportedException in AbstractEncoder.php line 151: Encodingformat (tmp) is not supported.
这个只是在windows中会出现,只需要在下面代码添加一个 case 'tmp': 即可
case 'jpg':
case 'jpeg':
case 'image/jpg':
case 'image/jpeg':
case 'image/pjpeg':
case 'tmp': //这是新添加的