DELETE me
DELETE me

Reputation:

how website check that a upload stuff is images or not

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

Answers (1)

Shachar
Shachar

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

Related Questions