一个关于gdi的奇怪问题+ 位图!
我使用以下代码来获取位图点
(宽度= 800,高度= 600);
Bitmap* m_BitmapCanvasCore = new Bitmap(width, height, PixelFormat32bppARGB);
但 m_BitmapCanvasCore 始终为 NULL... gdi+有什么问题吗? 或者我需要避免任何名称空间污染? 为什么?
I am using the following code to get a Bitmap point,
(width = 800, height = 600);
Bitmap* m_BitmapCanvasCore = new Bitmap(width, height, PixelFormat32bppARGB);
but the m_BitmapCanvasCore always is NULL...
Is there any thing wrong about gdi+? Or any namespace polution I need to avoid?
Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在创建位图之前,您是否调用了 GdiplusStartup ?
Did you call GdiplusStartup before creating the Bitmap?