laravel 使用 intervention/image 的注意方法
Posted ❦火鸟网络
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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‘: //这是新添加的
以上是关于laravel 使用 intervention/image 的注意方法的主要内容,如果未能解决你的问题,请参考以下文章