Reputation: 8525
I'm writing an ASP.NET (MVC C#) application where user will have to upload a few images and should be able to crop and rotate (vertically/horizontally). The application should resize the images automatically to fit onto the page.
Do you suggest resizing manually or use something like imageresizing.net (the free licence)? Cons and pros for imageresizing.net ? Any suggestions for tools to crop and rotate as well like jCrop (maybe ones that combine both functionality) ?
Upvotes: 1
Views: 704
Reputation: 4089
I'd always recommend using what's already out there if that fits your needs. You save on development time, but more importantly you save on maintenance and testing. If you're using a library: someone has already tested it and verified, so you can focus on your core. This way, you are "forced" to make your software modular and at a later day you can develop your own library if you need to optimize that part.
Upvotes: 3