page_type | languages | products | description | urlFragment | ||
---|---|---|---|---|---|---|
sample |
|
|
This sample demonstrates how to respond to an EventGridEvent published by a storage account to resize an image and upload a thumbnail as described in the article Automate resizing uploaded images using Event Grid. |
function-image-upload-resize |
This sample demonstrates how to respond to an EventGridEvent
published by a storage account to resize an image and upload a thumbnail as described in the article Automate resizing uploaded images using Event Grid.
Before running this sample locally, you need to add your connection string to the AzureWebJobsStorage
value in a file named local.settings.json
file. This file is excluded from the git repository, so an example file named local.settings.example.json
is provided.
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "<STORAGE_ACCOUNT_CONNECTION_STRING>",
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
"THUMBNAIL_CONTAINER_NAME": "thumbnails",
"THUMBNAIL_WIDTH": "100",
"datatype": "binary"
}
}
To use this file, do the following steps:
- Replace
<STORAGE_ACCOUNT_CONNECTION_STRING>
with your storage account connection string - Rename the file from
local.settings.example.json
tolocal.settings.json
The master
branch of this repository contains the Functions version 2.x implementation, while the v1
branch has the Functions 1.x implementation.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.