1个回答
推荐于2017-11-29
展开全部
VB屏幕截图,保存到位图文件
'声明部分
Option Explicit
Private Const SRCCOPY = &HCC0020
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 GetDesktopWindow Lib "user32" () As Long
Private Declare Function GetWindowDC 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 Sub Form_Load()
Me.AutoRedraw = True
End Sub
Private Sub Command1_Click()
CopyScreen "d:\1.bmp"
End Sub
Sub CopyScreen(FileName As String)
Dim w As Long, h As Long
Dim hwndSrc As Long
Dim hSrcDC As Long
hwndSrc = GetDesktopWindow()
hSrcDC = GetWindowDC(hwndSrc)
w = Screen.Width \ Screen.TwipsPerPixelX
h = Screen.Height \ Screen.TwipsPerPixelY
Call BitBlt(hdc, 0, 0, w, h, hSrcDC, 0, 0, SRCCOPY)
Call ReleaseDC(hwndSrc, hSrcDC)
SavePicture Me.Image, FileName
End Sub
将整个屏幕截图保存到指定文件名的位图文件
CopyScreen(FileName As String)
参数 FileName 为完整路径文件名即可
'声明部分
Option Explicit
Private Const SRCCOPY = &HCC0020
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 GetDesktopWindow Lib "user32" () As Long
Private Declare Function GetWindowDC 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 Sub Form_Load()
Me.AutoRedraw = True
End Sub
Private Sub Command1_Click()
CopyScreen "d:\1.bmp"
End Sub
Sub CopyScreen(FileName As String)
Dim w As Long, h As Long
Dim hwndSrc As Long
Dim hSrcDC As Long
hwndSrc = GetDesktopWindow()
hSrcDC = GetWindowDC(hwndSrc)
w = Screen.Width \ Screen.TwipsPerPixelX
h = Screen.Height \ Screen.TwipsPerPixelY
Call BitBlt(hdc, 0, 0, w, h, hSrcDC, 0, 0, SRCCOPY)
Call ReleaseDC(hwndSrc, hSrcDC)
SavePicture Me.Image, FileName
End Sub
将整个屏幕截图保存到指定文件名的位图文件
CopyScreen(FileName As String)
参数 FileName 为完整路径文件名即可
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询