将 PNG 压缩字节数组转换为 BMP 字节数组
我遇到了这个问题,到目前为止我读过的解决方案都不适合。我正在寻求一些智慧..
我有一个 Base64 编码的字符串,它源自 PNG 图像。我必须向水晶报告提供位图的字节数组。当然,很容易从 Base64 字符串获取字节数组...所以我需要一些从 PNG 字节数组到位图字节数组的帮助...
有什么想法吗?使用.NET 3.5框架。
I am having this issue and none of the solutions I've read fits in so far. I'm after some wisdom..
I have a Base64 encoded string, which is derived from a PNG image. I have to supply to crystal reports a byte array of Bitmap. Easy to get the byte array from Base64 string of course... so I need some help going from PNG byte array to Bitmap byte array...
Any ideas? Using .NET 3.5 Framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将需要使用
PngBitmapDecoder
。http://msdn.microsoft.com/en-us/library/aa970062.aspx
You will need to use a
PngBitmapDecoder
.http://msdn.microsoft.com/en-us/library/aa970062.aspx
Winform Image类提供Save方法。
对于WPF,请参考:
WPF 图像到字节[]
Winform Image class provide Save method.
For WPF, refer to:
WPF Image to byte[]