This seems to be a bit of an infamous error all over the web. So much so that I have been unable to find an answer to my problem as my scenario doesn\'t fit. An exception ge
byte[] bts = (byte[])page1.EnhMetaFileBits; using (var ms = new MemoryStream(bts)) { var image = System.Drawing.Image.FromStream(ms); System.Drawing.Image img = image.GetThumbnailImage(200, 260, null, IntPtr.Zero); img.Save(NewPath, System.Drawing.Imaging.ImageFormat.Png); }