An open API service indexing awesome lists of open source software.

https://github.com/mlof/imagesharp.web.providers.storage


https://github.com/mlof/imagesharp.web.providers.storage

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# ImageSharp.Web.Providers.Storage

## Getting started

```csharp
// register Storage.net provider in your IOC container
services.AddSingleton(provider => StorageFactory.Blobs.DirectoryFiles(directoryFullName: ""));

// remove the default ImageProvider, and add the StorageNetImageProvider.
services.AddImageSharp(options => { })
.RemoveProvider()
.AddProvider();
```