Skip to content

Instantly share code, notes, and snippets.

View piotrbach's full-sized avatar

Piotr Bach piotrbach

View GitHub Profile
@piotrbach
piotrbach / imageprocessor-custom-azure-imageservice.txt
Last active January 29, 2021 10:39
An image service for retrieving images from Azure for ImageProcessor. Read more on https://piotrbach.com/configuring-umbraco-media-on-azure-private-blob-storage
/// <summary>
/// An image service for retrieving images from Azure.
/// </summary>
public class AzureImageService : IImageService
{
private CloudBlobContainer _blobContainer;
private CloudStorageAccount _storageAccount;
private Dictionary<string, string> _settings = new Dictionary<string, string>();
/// <summary>