将图像文件从 URI 复制或下载到 Azure Blob
Copy or Download an image file from URI to Azure Blob
我有一个图片 uri:https://api.tinify.com/output/im1c1s69phhvjjm6.jpg
这是来自在线图像缩小的结果图像 api。
我想将缩小后的图像下载到 Azure 中的 blob 容器。
我做了:
var newBlockBlob = container.GetBlockBlobReference("minified-sample.jpg");
newBlockBlob.StartCopy(新 Uri(fileUrl), null, null, null);
然后发生的事情是我在容器中看到的只是一个 0 字节的图像文件。
我有一个图片 uri:https://api.tinify.com/output/im1c1s69phhvjjm6.jpg 这是来自在线图像缩小的结果图像 api。
我想将缩小后的图像下载到 Azure 中的 blob 容器。
我做了: var newBlockBlob = container.GetBlockBlobReference("minified-sample.jpg"); newBlockBlob.StartCopy(新 Uri(fileUrl), null, null, null);
然后发生的事情是我在容器中看到的只是一个 0 字节的图像文件。