2
1

More than 3 years have passed since last update.

ストレージアカウントのMIME Typeを設定する

Posted at

そのままアップロード処理を実行するとデフォルトでoctet-streamになってしまうっぽい。
CreateBlockBlobOptionsを使ってMIME Typeを設定、アップロードのオプションパラメータに付与すればOK

use MicrosoftAzure\Storage\Blob\Models\CreateBlockBlobOptions;

$options = new CreateBlockBlobOptions();
$options->setContentType("image/png");

$result = $this->blobClient->createBlockBlob($this->containerName, $fileName, $image,$options);

Azureは分かりやすいマニュアルが少ない。。。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1