gpt4 book ai didi

php - azure 图像 blob 提示下载选项

转载 作者:行者123 更新时间:2023-12-03 04:51:48 26 4
gpt4 key购买 nike

好吧,我有人找到了如何在 azure 上使用 php 的容器中上传 blob,但是即使我使用像 https://my.blob.url.net/my_image_folder/my_image_name 这样的普通 url 查看图像。 jpg 浏览器提示下载图像,而不是像在浏览器上查看普通图像一样查看图像,这是我上传时使用的代码

<?php
require_once __DIR__.'/vendor/autoload.php';
use WindowsAzure\Common\ServicesBuilder;
$connectionString = 'DefaultEndpointsProtocol=http;AccountName=account_name;AccountKey=my_key_value';
$blobRestProxy = ServicesBuilder::getInstance()->createBlobService($connectionString);
$content = fopen('folder/image.jpg','r');
$blob_name = 'image_name.jpg';
try
{
$blobRestProxy->createBlockBlob("container_name", $blob_name, $content);
}
catch(ServiceException $e)
{
$code = $e->getCode();
$error_message = $e->getMessage();
echo $code.": ".$error_message."<br />";
}

这段代码工作正常,但是当访问url时,它提示下载选项,这意味着我无法使用img html标签

最佳答案

您必须将 blob 的内容类型设置为适当的 mime 类型。以下是 C# 代码片段,展示了如何完成此操作:

entryData.DestinationBlob.Properties.ContentType = "image/jpeg";
entryData.DestinationBlob.SetProperties();

关于php - azure 图像 blob 提示下载选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28919700/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com