码迷,mamicode.com
首页 > 其他好文 > 详细

QPixmap 和 HBITMAP互转

时间:2014-05-09 05:06:39      阅读:802      评论:0      收藏:0      [点我收藏+]

标签:ext   int   c   使用   cti   a   

Q_GUI_EXPORT HBITMAP qt_pixmapToWinHBITMAP(const QPixmap &p, int hbitmapFormat = 0);

声明这一句后, 就可以使用了

HBITMAP hBmp =  qt_pixmapToWinHBITMAP(pix, 2);

该函数定义在qpixmap_win.cpp下

还有一些其他的实用函数

Q_GUI_EXPORT QPixmap qt_pixmapFromWinHBITMAP(HBITMAP bitmap, int hbitmapFormat = 0);
Q_GUI_EXPORT HICON qt_pixmapToWinHICON(const QPixmap &p);
Q_GUI_EXPORT QImage qt_imageFromWinHBITMAP(HDC hdc, HBITMAP bitmap, int w, int h);
Q_GUI_EXPORT QPixmap qt_pixmapFromWinHICON(HICON icon);

 

Qt5.3中可以直接使用

在qtwinextras/qwinfunctions.h中

Q_WINEXTRAS_EXPORT HBITMAP toHBITMAP(const QPixmap &p, HBitmapFormat format = HBitmapNoAlpha);
Q_WINEXTRAS_EXPORT QPixmap fromHBITMAP(HBITMAP bitmap, HBitmapFormat format = HBitmapNoAlpha);

 

QPixmap 和 HBITMAP互转,布布扣,bubuko.com

QPixmap 和 HBITMAP互转

标签:ext   int   c   使用   cti   a   

原文地址:http://www.cnblogs.com/lingdhox/p/3716086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!