In a rather simple ASP.NET application where the user can upload a image, mostly from his digital camera. I have to resize it to a workable size for the web and a thumbnail. What is here the best practice for? Is there a library that I in a simple way can implement without installing something on the web server.
|
1
|
|||
|
|
|
This thread on SO will probably help you decide: |
||
|
|
|
|
Look at the BitMap class- you can do this quite easily by specifying the size in the constructor. So imagine you wanted to half it:
If you want a higher quality solution, you need to consider the InterpolationMode enumeration. For the simple scenario you describe you certainly don't need to bother with 3rd party libraries. |
|||
|
|
|
|
I am no image expert, but I implemented image resizing on a website and used something like this:
|
||
|
|
