StretchBlt和StretchDIBits

StretchBlt和StretchDIBitsStretchBlt:从源矩形中复制一个位图到目标矩形,必要时按目标设备设置的模式进行图像的拉伸或压缩,如果目标设备是窗口DC,则意味着在窗口绘制位图,大致的使用代码如下:1voidDrawImage(HDChdc,HBITMAPhbm,constRECTtarget_rect)2{3HDChdcMemory=::CreateCom…

大家好,又见面了,我是你们的朋友全栈君。

StretchBlt:从源矩形中复制一个位图到目标矩形,必要时按目标设备设置的模式进行图像的拉伸或压缩,如果目标设备是窗口DC,则意味着在窗口绘制位图,大致的使用代码如下:

 1 void DrawImage(HDC hdc, HBITMAP hbm, const RECT target_rect)
 2 {
 3     HDC hdcMemory = ::CreateCompatibleDC(hdc);
 4     HBITMAP old_bmp = (HBITMAP)::SelectObject(hdcMemory, hbm);
 5 
 6     BITMAP bm = { 0 };
 7     ::GetObject(hbm, sizeof(bm), &bm);
 8 
 9     ::StretchBlt(
10         hdc,                              // Target device HDC
11         target_rect.left,                   // X sink position
12         target_rect.top,                    // Y sink position
13         target_rect.right - target_rect.left,    // Destination width
14         target_rect.bottom - target_rect.top,    // Destination height
15         hdcMemory,                               // Source device HDC
16         0,                                // X source position
17         0,                               // Y source position
18         bm.bmWidth,                        // Source width
19         bm.bmHeight,                        // Source height
20         SRCCOPY);                                // Simple copy
21 
22     ::SelectObject(hdcMemory, old_bmp);
23     ::DeleteObject(hdcMemory);
24 }

 StretchDIBits:该函数将DIB(设备无关位图)中矩形区域内像素使用的颜色数据拷贝到指定的目标矩形中,如果目标设备是窗口DC,同样意味着在窗口绘制位图,大致的使用代码如下:

 1 void DrawImage(HDC hdc, LPBITMAPINFOHEADER lpbi, void* bits, const RECT target_rect)
 2 {
 3     ::StretchDIBits(
 4         hdc,                                    // Target device HDC
 5         target_rect.left,                       // X sink position
 6         target_rect.top,                        // Y sink position
 7         target_rect.right - target_rect.left,   // Destination width
 8         target_rect.bottom - target_rect.top,   // Destination height
 9         0,                                      // X source position
10         0,                                      // Adjusted Y source position
11         lpbi->biWidth,                       // Source width
12         abs(lpbi->biHeight),                 // Source height
13         bits,                                   // Image data
14         (LPBITMAPINFO)lpbi,                     // DIB header
15         DIB_RGB_COLORS,                         // Type of palette
16         SRCCOPY);                               // Simple image copy 
18 }

简单的讲,StretchBlt操作的是设备相关位图是HBITMAP句柄,StretchDIBits操作的是设备无关位图是内存中的RGB数据。

DirectShow示例代码中的CDrawImage类提供了FastRender和SlowRender两个函数用于渲染视频图像,FastRender用的StretchBlt,SlowRender用的StretchDIBits,其中SlowRender的注释是这样写的:

1 // This is called when there is a sample ready to be drawn, unfortunately the
2 // output pin was being rotten and didn't choose our super excellent shared
3 // memory DIB allocator so we have to do this slow render using boring old GDI
4 // SetDIBitsToDevice and StretchDIBits. The down side of using these GDI
5 // functions is that the image data has to be copied across from our address
6 // space into theirs before going to the screen (although in reality the cost
7 // is small because all they do is to map the buffer into their address space)

也就是说StretchDIBits比StretchBlt多消耗了从内存地址空间拷贝图像数据到GDI地址空间的时间。实际测试结果在XP和Win7系统下两者效率几乎没有区别,所以可以放心大胆的使用StretchDIBits,毕竟内存数据处理起来要方便的多。

 

 

 

 

 

转载于:https://www.cnblogs.com/xrunning/p/3647046.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/148100.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • SpringBoot 线程池

    SpringBoot 线程池SpringBoot线程池简介使用开启配置使用SpringBoot默认线程池@Async自定义线程池扩展ThreadPoolTaskScheduler和ThreadPoolTaskExecutor继承关系结构Reject策略预定义总结简介程序、线程和线程池进程是资源分配最小单位,线程是程序执行的最小单位。计算机在执行程序时,会为程序创建相应的进程,进行资源分配时,是以进程为单位进行相应的分配。每个进程都有相应的线程,在执行程序时,实际上是执行相应的一系列线程。总结:进程是资源分配最小单位,线程

    2022年6月29日
    141
  • there is no vbios support_iscsi发起程序提示连接失败

    there is no vbios support_iscsi发起程序提示连接失败在探测iscsi的时候出现如下错误:[root@Rac-two~]#iscsiadm-mdiscovery-tsendtargets-p192.168.2.11:3260[ OK ]iscsid:[ OK ]iscsiadm:Noportalsfound[root@Rac-two~]#解决办法:[root@openfiler1~]#m

    2022年8月22日
    4
  • pycharm设置作者和时间[通俗易懂]

    pycharm设置作者和时间[通俗易懂]pycharm设置作者和时间,每次新建代码时,字段在代码开头新增这几行内容。示例:#-*-coding:utf-8-*-#@Author:作者名#@Time:${DATE}${TIME}

    2022年8月27日
    5
  • android机型适配终极篇_android 10适配

    android机型适配终极篇_android 10适配Android7.0发布已经有一个多月了,Android7.0在给用户带来一些新的特性的同时,也给开发者带来了新的挑战,这几天我将应用适配到Android7.0,其中也遇到了不少问题也踩了一些坑,在这里就把我在Android7.0适配上的一些心得分享给大家,让大家的应用能早一天跑在Android7.0上。权限更改随着Android版本越来越高,Android对隐私的保护力度也越来越大。从Androi

    2025年9月21日
    5
  • Windows Phone 8.1 新功能 – 应用栏控件

    Windows Phone 8.1 新功能 – 应用栏控件

    2022年1月2日
    58
  • MySQL 5.7的原生JSON数据类型使用

    MySQL 5.7的原生JSON数据类型使用

    2022年2月18日
    46

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号