System.Drawing.Image to stream C#
我的程序中有一个
请尝试以下操作:
1 2 3 4 5 6 | public static Stream ToStream(this Image image, ImageFormat format) { var stream = new System.IO.MemoryStream(); image.Save(stream, format); stream.Position = 0; return stream; } |
然后您可以使用以下内容:
2用适合您场景的任何格式替换GIF。
使用内存流
1 2 3 4 5 |