1
如何將byte[]
轉換爲.NET核心中的圖像?.NET核心字節數組到圖像
我發現this:
using (var ms = new MemoryStream(byteArrayIn))
{
return Image.FromStream(ms);
}
但似乎Image
犯規存在.NET-Core
。
如何將byte[]
轉換爲.NET核心中的圖像?.NET核心字節數組到圖像
我發現this:
using (var ms = new MemoryStream(byteArrayIn))
{
return Image.FromStream(ms);
}
但似乎Image
犯規存在.NET-Core
。
沒有確實沒有發佈。您可以使用庫ImageSharp。
沒有確實沒有發佈。你可以使用庫ImageSharp – Lenny32
哦,這很奇怪。如果你願意回答這個問題,我可以將其標記爲正確的 –