1. #include <windows.h>
  2. #include <gdiplus.h>
  3. /*  GDI+ startup token */
  4. ULONG_PTR gdiplusStartupToken;
  5. /*  Declare Windows procedure  */
  6. LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
  7. // UpdateLayeredWindow Defination
  8. typedef BOOL(*UPDATELAYEREDWINDOWFUNCTION)(HWND,HDC,POINT*,SIZE*,HDC,POINT*,COLORREF,BLENDFUNCTION*,DWORD);
  9. /*  Make the class name into a global variable  */
  10. char szClassName[ ] = "PNGDialog";
  11. int WINAPI WinMain (HINSTANCE hThisInstance,
  12. HINSTANCE hPrevInstance,
  13. LPSTR lpszArgument,
  14. int nCmdShow)
  15. {
  16. /**/
  17. Gdiplus::GdiplusStartupInput gdiInput;
  18. Gdiplus::GdiplusStartup(&gdiplusStartupToken,&gdiInput,NULL);
  19. /**/
  20. HWND hwnd;               /* This is the handle for our window */
  21. MSG messages;            /* Here messages to the application are saved */
  22. WNDCLASSEX wincl;        /* Data structure for the windowclass */
  23. /* The Window structure */
  24. wincl.hInstance = hThisInstance;
  25. wincl.lpszClassName = szClassName;//+-69+
  26. wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
  27. wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
  28. wincl.cbSize = sizeof (WNDCLASSEX);
  29. /* Use default icon and mouse-pointer */
  30. wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
  31. wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
  32. wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
  33. wincl.lpszMenuName = NULL;                 /* No menu */
  34. wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
  35. wincl.cbWndExtra = 0;                      /* structure or the window instance */
  36. /* Use Windows's default colour as the background of the window */
  37. wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
  38. /* Register the window class, and if it fails quit the program */
  39. if (!RegisterClassEx (&wincl))
  40. return 0;
  41. /* The class is registered, let's create the program*/
  42. hwnd = CreateWindowEx (
  43. WS_EX_LAYERED|WS_EX_TOPMOST|WS_EX_TOOLWINDOW,                   /* Extended possibilites for variation */
  44. szClassName,         /* Classname */
  45. "PNGDialog Example Application",       /* Title Text */
  46. WS_OVERLAPPEDWINDOW, /* default window */
  47. CW_USEDEFAULT,       /* Windows decides the position */
  48. CW_USEDEFAULT,       /* where the window ends up on the screen */
  49. 500,                 /* The programs width */
  50. 500,                 /* and height in pixels */
  51. HWND_DESKTOP,        /* The window is a child-window to desktop */
  52. NULL,                /* No menu */
  53. hThisInstance,       /* Program Instance handler */
  54. NULL                 /* No Window Creation data */
  55. );
  56. /* Make the window visible on the screen */
  57. ShowWindow (hwnd, nCmdShow);
  58. LONG style = ::GetWindowLong(hwnd,GWL_STYLE);
  59. if(style&WS_CAPTION)
  60. style^=WS_CAPTION;
  61. if(style&WS_THICKFRAME)
  62. style^=WS_THICKFRAME;
  63. if(style&WS_SYSMENU)
  64. style^=WS_SYSMENU;
  65. ::SetWindowLong(hwnd,GWL_STYLE,style);
  66. style = ::GetWindowLong(hwnd,GWL_EXSTYLE);
  67. if(style&WS_EX_APPWINDOW)
  68. style^=WS_EX_APPWINDOW;
  69. ::SetWindowLong(hwnd,GWL_EXSTYLE,style);
  70. /********************************************
  71. *   step 1.
  72. *   Using Gdiplus to load the image
  73. ********************************************/
  74. RECT wndRect;
  75. ::GetWindowRect(hwnd,&wndRect);
  76. SIZE wndSize = {wndRect.right-wndRect.left,wndRect.bottom-wndRect.top};
  77. HDC hdc = ::GetDC(hwnd);
  78. HDC memDC = ::CreateCompatibleDC(hdc);
  79. HBITMAP memBitmap = ::CreateCompatibleBitmap(hdc,wndSize.cx,wndSize.cy);
  80. ::SelectObject(memDC,memBitmap);
  81. Gdiplus::Image image(L"pic.png");
  82. Gdiplus::Graphics graphics(memDC);
  83. graphics.DrawImage(&image,0,0,wndSize.cx,wndSize.cy);
  84. /********************************************
  85. *   step 2.
  86. *   Get "UpdateLayeredWindow" function's
  87. *   proc address.
  88. ********************************************/
  89. HMODULE hUser32 = ::LoadLibrary("User32.dll");
  90. if(!hUser32)
  91. {
  92. return FALSE;
  93. }
  94. UPDATELAYEREDWINDOWFUNCTION UpdateLayeredWindow = (UPDATELAYEREDWINDOWFUNCTION)::GetProcAddress(hUser32,"UpdateLayeredWindow");
  95. if(!UpdateLayeredWindow)
  96. {
  97. return FALSE;
  98. }
  99. // get screen dc
  100. HDC screenDC = GetDC(NULL);
  101. POINT ptSrc = {0,0};
  102. /*********************************************
  103. *   step 3.
  104. *   Use UpdateLayeredWindow to Draw the Window
  105. *
  106. *********************************************/
  107. BLENDFUNCTION blendFunction;
  108. blendFunction.AlphaFormat = AC_SRC_ALPHA;
  109. blendFunction.BlendFlags = 0;
  110. blendFunction.BlendOp = AC_SRC_OVER;
  111. blendFunction.SourceConstantAlpha = 255;
  112. UpdateLayeredWindow(hwnd,screenDC,&ptSrc,&wndSize,memDC,&ptSrc,0,&blendFunction,2);
  113. ::DeleteDC(memDC);
  114. ::DeleteObject(memBitmap);
  115. /* Run the message loop. It will run until GetMessage() returns 0 */
  116. while (GetMessage (&messages, NULL, 0, 0))
  117. {
  118. /* Translate virtual-key messages into character messages */
  119. TranslateMessage(&messages);
  120. /* Send message to WindowProcedure */
  121. DispatchMessage(&messages);
  122. }
  123. Gdiplus::GdiplusShutdown(gdiplusStartupToken);
  124. /* The program return-value is 0 - The value that PostQuitMessage() gave */
  125. return messages.wParam;
  126. }
  127. /*  This function is called by the Windows function DispatchMessage()  */
  128. LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
  129. {
  130. switch (message)                  /* handle the messages */
  131. {
  132. case WM_DESTROY:
  133. PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
  134. break;
  135. case WM_LBUTTONDOWN:
  136. //::SendMessage(hwnd,WM_HIT)
  137. break;
  138. default:                      /* for messages that we don't deal with */
  139. return DefWindowProc (hwnd, message, wParam, lParam);
  140. }
  141. return 0;
  142. }

本文出自 “冰狐浪子的博客” 博客,请务必保留此出处http://bhlzlx.blog.51cto.com/3389283/949818

http://www.cnblogs.com/lidabo/p/3701249.html

纯win32实现PNG图片透明窗体的更多相关文章

  1. win32下实现透明窗体

    最開始写透明窗体的代码,在百度了之后,找到了SetLayeredWindowAttributes()这一个函数,可是因为网上案列的缺少,使得非常多人无法非常好的使用这一个方法,我花了几天的时间写了一个 ...

  2. 重温 Win32 API ----- 截屏指定窗体并打印

    朋友说在一个VC++6.0开发的项目中要增加打印窗体的功能,让帮忙写个代码供其调用. 这么老的IDE当然不想碰了,并且也不喜欢MFC笨拙不清晰的封装.所以决定採用纯Win32 API,然后用C++类简 ...

  3. gdi+ 高速绘制透明窗体

    gdi+ 高速绘制透明窗体: 方法一: 1.用Iamge对象载入png资源, 2.调用drawimage函数讲图片绘制出了 3.UpdateLayeredWindow对窗体进行布局 方法二: 1.用B ...

  4. qt 获取windows 的消息(通过MFC的DLL的透明窗体转发消息)good

    qt 给win32 发送消息很简单,但是要获取windows 消息却十分复杂,最后想了一个不是很完美 但是也是以现在本人能力所能实现的唯一途径了,基本原理是 利用vc编写一个mfc 的dll ,这个d ...

  5. 【转载】Layered Window(分层窗体,透明窗体)

    本文转载自花间醉卧<Layered Window(分层窗体,透明窗体)> //为窗体添加WS_EX_LAYERED属性,该属性使窗体支持透明 ModifyStyleEx(0, WS_EX_ ...

  6. 解决IE6中 PNG图片透明的终极方案-八种方案!

    “珍惜生命,远离IE6”,IE6中的bug令很多Web前端开发人员实为头疼,因此不知道烧了多少脑细胞,在众多的Bug中最令人抓狂的就是IE对png图片的不支持,导致设计师和重构师放弃了很多很炫的效果, ...

  7. WPF透明窗体不支持缩放解决方案

    方案一 WPF中的无边框透明窗体,由于没有边并且透明,窗体无法进行缩放操作,今天来讲解如何解决这个问题. 先说一下思路,我们先手为该窗体添加4个边,4个角用于缩放操作,然后再为他们写事件,完成拖放操作 ...

  8. Qt Widget 利用 Qt4.5 实现酷炫透明窗体

    本文讲述的是Qt Widget 利用 Qt4.5 实现酷炫透明窗体,QWidget类中的每一个窗口部件都是矩形,并且它们按Z轴顺序排列的.一个窗口部件可以被它的父窗口部件或者它前面的窗口部件盖住一部分 ...

  9. 分享11个纯css完成的图片浏览器

    图片画廊用于在网站上显示系列图片,它已成为网站重要的组成部分.实现图片画廊有很多种方法,今天要与大家分享的是11个使用纯 CSS 实现的图片画廊,它们代码少,效果炫,加载速度快,希望能对大家有所帮助. ...

随机推荐

  1. POJ 3675 Telescope 简单多边形和圆的面积交

    这道题得控制好精度,不然会贡献WA  QAQ 还是那个规则: int sgn(double x){ if(x > eps) return 1; else if(x < - eps) ret ...

  2. django学习之Model(四)MakingQuery

    上一篇写到MakingQuey中的filter,本篇接着来. 10)-扩展多值的关系 如果对一个ManyToManyField或ForeignKey的表进行filter过滤查询的话,有2中方法可以用. ...

  3. 在springmvc中controller的一个方法处理多个不同请求

    value的uri值为以下三类: A) 可以指定为普通的具体值: B)  可以指定为含有某变量的一类值(URI Template Patterns with Path Variables): @Req ...

  4. Scriptcase在线试用开发环境

    现在,你可以通过浏览器在线试用的方式,体验Scriptcase的高效快速开发方式. 只需要有上网环境就可以使用: 兼容几乎所有的浏览器(IE.Firefox.Chrome.Opera……): 客户端无 ...

  5. 基于visual Studio2013解决算法导论之047赫夫曼编码

     题目 赫夫曼编码 解决代码及点评 // 赫夫曼编码.cpp : 定义控制台应用程序的入口点. // #include <iostream> #include <stdio.h ...

  6. 基于visual Studio2013解决C语言竞赛题之0514单词统计

     题目 解决代码及点评 /************************************************************************/ /* 14. 有一行字 ...

  7. Vim 使用设置

    转自:http://www.cnblogs.com/end/archive/2012/06/01/2531147.html Vim 作为最好用的文本编辑器之一,使用vim来编文档,写代码实在是很惬意的 ...

  8. 闲扯 Javascript 03 时钟和QQ延时框

    时钟 : 所用到得图片  : 开启定时器 setInterval  间隔型 setTimeout  延时型 停止定时器 clearInterval clearTimeout 效果思路 获取系统时间 D ...

  9. 一天一个类,一点也不累 之 Set接口

    我们的口号是:一天一个类,一点也不累-- 再次回忆一下集合相关的类图. 官方API上这样介绍这个接口: A collection that contains no duplicate elements ...

  10. 转:git windows中文 乱码问题解决汇总

    it的Windows版本Msysgit对中文的支持不够好 .当使用时,会出现以下三种情况的中文乱码: 下面的几个文件都在git安装目录下文件夹etc内.1.ls不能显示中文目录 解决办法:在git/g ...