干预图像:直接从具有原始文件名和ext的URL保存图像?
2022-08-30 20:50:03
从远程服务器拍摄图像时如何获取文件名?以及如何保存原始大小和文件名?
// Take remote image
$img = Image::make('http://image.info/demo.jpg');
// how to save in the img/original/demo.jpg
$img->save(????);
我使用 Intervention(http://image.intervention.io/api/make)来构建 CakePHP 3 映像行为,我想提供从远程服务器轻松上传的图像,并保留原始映像作为将来操作的来源。
编辑
我问,当从远程服务器获取时,是否有返回文件名的干预图像方法。我知道php copy(),basename(),我也可以使用CakePHP File实用程序,但它给了我对远程文件的重复请求。