Reputation: 12414
We are using asp.net with .net 4.0
We want to allow users to upload any image and we want to create tiny avatar for uploaded image?
What is the best way to convert uploaded images for avatar?
Upvotes: 1
Views: 220
Reputation: 887479
You can use Gravatar.
To do it yourself, you can use System.Drawing.dll to create and resize a Bitmap
object.
Upvotes: 1