标签: asp.net bitmap
我有一个png格式的内存流,想要将它保存到Bitmap对象,以便我可以提取像素。我使用的是.net 2.0,由于某些限制,无法使用更高版本。你能帮帮我吗???
答案 0 :(得分:1)
你看过System.Drawing.Bitmap对象吗?
它的构造函数为public Bitmap(Stream stream)
public Bitmap(Stream stream)
然后,您可以在调用Save
Save