Find Out the Image Type without Checking its Extension

My colleague called up with a query. His application accepted images to be uploaded to a central server. Later the application processed the images and separated them according to the Image Type. They determined the image type by checking the extension of the image uploaded –- a very common practice of detecting the image type.

The issue here was that some images which were actually gif’s were renamed as jpeg’s and then uploaded, which led to faulty image processing. The requirement was to determine the correct image type in the simplest possible way even if the extension was renamed. Here’s what I suggested:

C#

try{    Image imgUp = Image.FromFile(Server.MapPath("~/images/abc.jpg"));    if (imgUp.RawFormat.Equals(ImageFormat.Jpeg))        Response.Write("JPEG");    else if (imgUp.RawFormat.Equals(ImageFormat.Gif))        Response.Write("GIF");}catch (Exception ex){}

VB.NET

Try    Dim imgUp As Image = Image.FromFile(Server.MapPath("~/images/abc.jpg"))    If imgUp.RawFormat.Equals(ImageFormat.Jpeg) Then        Response.Write("JPEG")    ElseIf imgUp.RawFormat.Equals(ImageFormat.Gif) Then        Response.Write("GIF")    End IfCatch ex As ExceptionEnd Try

The Image.RawFormat property is extremely useful in this situation to get the file format of the image.

Note: Alternatively you can also use Magic Numbers

Share:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • DZone
  • LinkedIn
  • Reddit
  • StumbleUpon
  • Twitthis
This entry was posted in ASP.Net, C#, Syndicated, VB.NET. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Spam Protection by WP-SpamFree