Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pjirsa/converttiffdurable
https://github.com/pjirsa/converttiffdurable
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pjirsa/converttiffdurable
- Owner: pjirsa
- Created: 2023-06-26T14:10:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-28T13:37:38.000Z (over 1 year ago)
- Last Synced: 2024-10-30T00:33:55.692Z (about 2 months ago)
- Language: C#
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ConvertTiffDurable
Azure Durable function using fan-out pattern to convert a batch of tiff images to jpg (or other formats) using [Magick.NET](https://github.com/dlemstra/Magick.NET).This function is triggered with an HTTP POST request using the following body:
```JSON
{
"SourceContainer": "source",
"SourcePath": "folder_with_tiffs",
"DestinationPath": "folder_for_jpgs"
}
```## Prerequisites
- Add Azure Storage Account connection string to local settings file or appsettings of deployed function: `"StorageConnection": ""`## Other Considerations
If you are processing a large number of files, consider controlling parallelization using ['maxConcurrentActivityFunctions'](https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-bindings#hostjson-settings)