Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a library I am writing for some infrastructure projects at work, I have a method to create various scales of an image (for thumbnails etc...). However, the system that I am storing this data in is requiring a mime-type declared in the database for various reasons.

Is there a way to get a Mime type from the passed in c# Image class, or will I have to have external applications pass in the Mimetype along with the image?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can get the ImageFormat from the Image, and you can get the MIME type from the ImageCodecInfo. All you need to do is tie the two together:

ImageFormat format = yourImage.RawFormat;
ImageCodecInfo codec = ImageCodecInfo.GetImageDecoders().First(c => c.FormatID == format.Guid);
string mimeType = codec.MimeType;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.