我想在网页中以System.Drawing.Bitmap的格式显示一张图片。
我在这里使用,
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;
}
}
在那个Images变量中,System.Drawing.Bitmap格式就在那里,我想在C#中将该图像丢失到网页