Reputation:
how website check the file uploaded by user is image or not. i want to do this in asp.net mvc c#
Upvotes: 1
Views: 90
Reputation: 943
pass the file contents into a Bitmap object (using the ctor with Stream parameter), and if the constructor throws an ArgumentException, it's not an image (for popular image formats, mind you).
Upvotes: 3