如何实现屏幕变暗的效果?

gougou5 2003-05-15 07:51:30
UP
...全文
87 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
LoveBH 2003-05-15
  • 打赏
  • 举报
回复
幕变暗实际上就是将屏幕原来图像与花色进行与运算以后的结果。因此,首先要使用API函数CreateBitmap(创建位图对象)和CreatePatternBrush(创建花色对象)来建立花色对象,然后再使用BitBlt函数使屏幕图像与花色进行与运算,这样就可以产生变暗的效果。要恢复屏幕的正常显示,需要使用API函数InvalidateRect



Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function ReleaseDC Lib "user32" (ByVal hwnd As Long, ByVal hdc As Long) As Long
Private Declare Function CreatePatternBrush Lib "gdi32" (ByVal hBitmap As Long) As Long
Private Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop As Long) As Long
Private Declare Function DeleteObject Lib "gdi32" (ByVal hObject As Long) As Long
Private Declare Function CreateBitmap Lib "gdi32" (ByVal nWidth As Long, ByVal nHeight As Long, ByVal nPlanes As Long, ByVal nBitCount As Long, lpBits As Any) As Long
Private Declare Function SelectObject Lib "gdi32" (ByVal hdc As Long, ByVal hObject As Long) As Long
Private Declare Function InvalidateRect Lib "user32" (ByVal hwnd As Long, ByVal lpRect As Long, ByVal bErase As Long) As Long
Private Const MERGECOPY = &HC000CA

'将图变暗,如同待关机一般
Private Sub Command1_Click()
Dim hBitmap As Long, hBrush As Long
Dim hdcscr As Long
Dim widthscr As Long
Dim heightscr As Long
Dim bybits(1 To 16) As Byte
'创建花色对象
bybits(1) = &H55: bybits(3) = &HAA: bybits(5) = &H55: bybits(7) = &HAA
bybits(9) = &H55: bybits(11) = &HAA: bybits(13) = &H55: bybits(15) = &HAA
hBitmap = CreateBitmap(8, 8, 1, 1, bybits(1))
hBrush = CreatePatternBrush(hBitmap)
'得到屏幕句柄
hdcscr = GetDC(0)
'得到屏幕的高与宽,单位为象素
widthscr = Screen.Width \ Screen.TwipsPerPixelX
heightscr = Screen.Height \ Screen.TwipsPerPixelY
'选用对象
hOldPatten = SelectObject(hdcscr, hBrush)
'产生屏幕变暗效果
BitBlt hdcscr, 0, 0, widthscr, heightscr, hdcscr, 0, 0, MERGECOPY
'恢复屏幕的对象
SelectObject hdcscr, hOldPatten
ReleaseDC 0, hdcscr
'删除位图与花色对象
DeleteObject hBrush
DeleteObject hBitmap
End Sub

'回复原本的画面
Private Sub Command2_Click()
InvalidateRect 0, 0, 1
End Sub



欢迎光临电脑爱好者论坛 bbs.cfanclub.net

7,765

社区成员

发帖
与我相关
我的任务
社区描述
VB 基础类
社区管理员
  • VB基础类社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧