Given a Stream that I know will be a picture, is there a way to programmatically determine if it is a Bitmap or a MetaFile when pulled from Image.FromStream(mystream)? Like a flag or something.

Environment: .NET, System.Drawing, C#/VB

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Image.RawFormat

link|improve this answer
Brilliant, don't know how I missed that! – Otaku Apr 20 '11 at 18:52
feedback

I think, by reading the first few bytes one sould be able to identify. LIke II* are the byes in tiff file. ‰PNGin png, BM in bmp files

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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