如何将图像从本地存储上传到云端?

Posted

技术标签:

【中文标题】如何将图像从本地存储上传到云端?【英文标题】:How to upload images from local storage into cloudinary? 【发布时间】:2021-09-28 11:59:34 【问题描述】:

在 laravel 8 应用程序中,我需要将图像从本地存储上传到 cloudinary(使用 cloudinary-laravel 1.0)

并查看描述:

// Store the uploaded file in the "lambogini" directory on Cloudinary with the filename "prosper"
$result = $request->file->storeOnCloudinaryAs('lambogini', 'prosper');

如何将我的存储路径转换为上传的请求($request->file)? 上传的请求似乎是可以与该库的方法一起使用的对象?

谢谢!

【问题讨论】:

【参考方案1】:

如果您的存储空间中已有该文件,则可以使用以下内容上传:

$uploadedFileUrl = Cloudinary::upload('path/to/your/image.jpg')->getSecurePath();

【讨论】:

以上是关于如何将图像从本地存储上传到云端?的主要内容,如果未能解决你的问题,请参考以下文章

android如何将图像从互联网下载到本地存储?

本地到云端数据如何处理

如何从本地存储中获取阵列图像到刀片文件

将图像从 opencv 上传到 s3 存储桶

Kotlin - 无法将图像上传到 Firebase 存储

从请求将文件上传到云存储而不在本地保存