I need the fastest library to resize full size images (some up to 9MB in size) to multiple sizes.
Here's the scenerio:
- User uploads a photo
- a FileSystemWatcher is running in a service watching the drop location (on a SAN)
- When a new photo appears, the service will create 4 versions of the image at full JPEG quality:
- 100px wide
- 320px wide
- 640px wide
- 1280 wide
I'm not fussed if the library is C/C++ or anything else for that matter, as long as I can tap into it via .NET it's cool.
Also this will need to scale to possibly 1,000 active users.
Let me know your thoughts :)