I want to display one image in the format of System.Drawing.Bitmap in Webpage.
here i used,
var file12 = TagLib.File.Create(file);
if (file12.Tag.Pictures.Length >= 1)
{
var bin = (byte[])(file12.Tag.Pictures[0].Data.Data);
if (bin.Length > 0)
{
Images = System.Drawing.Image.FromStream(new MemoryStream(bin)).GetThumbnailImage(200, 200, null, IntPtr.Zero);
album = file12.Tag.Album;
}
}
in that Images variable,System.Drawing.Bitmap format is there,i want to dislpay that image to webpage in C#