myBitmap.RawFormat 与任何已知的 ImageFormat 不同吗?
我正在使用 GDI+,创建一个像这样的新位图:
var bmp = new Bitmap(width, height);
现在,当我观察它的 RawFormat.Guid 时,我发现它与所有预定义的 ImageFormat 不同(虽然我希望它是 JPEG)。
ImageFormat.Jpeg.Guid
{b96b3cae-0728-11d3-9d7b-0000f81ef32e}
format.Guid
{b96b3caa-0728-11d3-9d7b-0000f81ef32e}
有趣的是,正如你所看到的,除了一个让我更加困惑的字符之外,它们是相同的。
知道为什么吗?代码的哪些部分决定了我创建的位图的 RawFormat 是什么?我们如何确保它是有效的 ImageFormat?
谢谢。
I'm working with GDI+ and I create a new bitmap like this:
var bmp = new Bitmap(width, height);
now when I observe its RawFormat.Guid I see that it is different from all predefined ImageFormats (while I expect it to be JPEG).
ImageFormat.Jpeg.Guid
{b96b3cae-0728-11d3-9d7b-0000f81ef32e}
format.Guid
{b96b3caa-0728-11d3-9d7b-0000f81ef32e}
Interesting part is that as you can see they are identical except one character which makes me even more confused.
Any idea why? Which parts of code determines what is the RawFormat of the bitmap I create? How can we ensure it's a valid ImageFormat?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从Windows SDK来看,
头文件:“Memory BMP”,非常合适。是的,微软经常手动搞乱 GUID。淘气。
From the Windows SDK,
<gdiplusimaging.h>
header file:"Memory BMP", quite appropriate. And yes, Microsoft often messes with GUIDs by hand. Naughty.