Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$image->exif() 返回 null 而 exif_read_data($path) 返回我需要的所有信息。我宁愿使用干预,因为我不会总是有一个本地文件。有任何想法吗?
在 Laravel 5.8 中更改
Image::make(Storage::get($fl))->exif();
和
Image::make(Storage::path($fl))->exif();
原因是您必须处理物理文件,而不是其内容。因此,如果您这样做,它将无法正常工作:
$image->make(file_get_contents($path));
但是如果你引用一个路径:
$image->make($path);
希望可以帮助其他遇到此问题的人。