I am using AzureReader2 for resizing image that I request from azure blob, resizing is working fine.
Below is my code which is enough for the resizing the image from azure using AzureReader2 plugin
<resizer>
<plugins>
<add name="MvcRoutingShim" />
<add name="AzureReader2" connectionString="DefaultEndpointsProtocol=https;AccountName=xxxxxx;AccountKey=xxxxxxx" endpoint="http://xxxxxxx.blob.core.windows.net/" />
</plugins>
<clientcache minutes="2880" />
</resizer>
But I want to customize http headers like ETag, Last-Modified, Cache-Control options via my webCofig file configuration settings. Which I am feeling difficult to proceed.
So, Any pointers or workaround or leads for generating and customizing the above mentioned options.