| Blog Office VBA | Blog Excel | Blog Access |
Será que consigo capturar uma tela ou um formulário e depois imprimí-lo?
Será que consigo capturar uma tela ou um formulário e depois imprimí-lo?
Antes de continuar, um pequeno parênteses, deixe seus comentários para este post.
Este artigo mostra como capturar qualquer Formulário ou Janela dentro do objeto Imagem. Depois que a imagem na tela for capturada no objeto Imagem, poderá facilmente imprimí-lo usando o método PaintPicture do objeto Printer. Siga com atenção os passos a partir de agora:
1. Inicie uma nova aplicação, nela crie um novo formulário chamado Form1.2. Coloque 6 botões ao longo do lado esquerdo do formulário.3. Insira um picture box no formulário à direita dos botões.4. Coloque o código a seguir dentro do Form1:
' Capture the entire screen.Private Sub Command1_Click()Set Picture1.Picture = CaptureScreen()End Sub' Capture the entire form including title and border.Private Sub Command2_Click()Set Picture1.Picture = CaptureForm(Me)End Sub' Capture the client area of the form.Private Sub Command3_Click()Set Picture1.Picture = CaptureClient(Me)End Sub' Capture the active window after two seconds.Private Sub Command4_Click()MsgBox "Two seconds after you close this dialog " & _"the active window will be captured."' Wait for two seconds.Dim EndTime As DateEndTime = DateAdd("s", 2, Now)Do Until Now > EndTimeDoEventsLoopSet Picture1.Picture = CaptureActiveWindow()' Set focus back to form.Me.SetFocusEnd Sub' Print the current contents of the picture box.Private Sub Command5_Click()PrintPictureToFitPage Printer, Picture1.PicturePrinter.EndDocEnd Sub' Clear out the picture box.Private Sub Command6_Click()Set Picture1.Picture = NothingEnd Sub' Initialize the form and controls.Private Sub Form_Load()Me.Caption = "Capture and Print Example"Command1.Caption = "&Screen"Command2.Caption = "&Form"Command3.Caption = "&Client"Command4.Caption = "&Active"Command5.Caption = "&Print"Command6.Caption = "C&lear"Picture1.AutoSize = TrueEnd Sub
5. Adicione um novo módulo.6. Neste novo módulo cole o código abaixo:''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Visual Basic 4.0 16/32 Capture Routines'' This module contains several routines for capturing windows into a' picture. All the routines work on both 16 and 32 bit Windows' platforms.' The routines also have palette support.'' CreateBitmapPicture - Creates a picture object from a bitmap and' palette.' CaptureWindow - Captures any window given a window handle.' CaptureActiveWindow - Captures the active window on the desktop.' CaptureForm - Captures the entire form.' CaptureClient - Captures the client area of a form.' CaptureScreen - Captures the entire screen.' PrintPictureToFitPage - prints any picture as big as possible on' the page.'' NOTES' - No error trapping is included in these routines.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Option ExplicitOption Base 0Private Type PALETTEENTRYpeRed As BytepeGreen As BytepeBlue As BytepeFlags As ByteEnd TypePrivate Type LOGPALETTEpalVersion As IntegerpalNumEntries As IntegerpalPalEntry(255) As PALETTEENTRY ' Enough for 256 colors.End TypePrivate Type GUIDData1 As LongData2 As IntegerData3 As IntegerData4(7) As ByteEnd Type#If Win32 ThenPrivate Const RASTERCAPS As Long = 38Private Const RC_PALETTE As Long = &H100Private Const SIZEPALETTE As Long = 104Private Type RECTLeft As LongTop As LongRight As LongBottom As LongEnd TypePrivate Declare Function CreateCompatibleDC Lib "GDI32" (ByVal hDC As Long) As LongPrivate Declare Function CreateCompatibleBitmap Lib "GDI32" (ByVal hDC As Long, ByVal nWidth As Long, _ByVal nHeight As Long) As LongPrivate Declare Function GetDeviceCaps Lib "GDI32" (ByVal hDC As Long, ByVal iCapabilitiy As Long) As LongPrivate Declare Function GetSystemPaletteEntries Lib "GDI32" ( _ByVal hDC As Long, ByVal wStartIndex As Long, _ByVal wNumEntries As Long, lpPaletteEntries As PALETTEENTRY) _As LongPrivate Declare Function CreatePalette Lib "GDI32" (lpLogPalette As LOGPALETTE) As LongPrivate Declare Function SelectObject Lib "GDI32" (ByVal hDC As Long, ByVal hObject As Long) As LongPrivate Declare Function BitBlt Lib "GDI32" ( _ByVal hDCDest As Long, ByVal XDest As Long, _ByVal YDest As Long, ByVal nWidth As Long, _ByVal nHeight As Long, ByVal hDCSrc As Long, _ByVal XSrc As Long, ByVal YSrc As Long, ByVal dwRop As Long) _As LongPrivate Declare Function DeleteDC Lib "GDI32" (ByVal hDC As Long) As LongPrivate Declare Function GetForegroundWindow Lib "USER32" () As LongPrivate Declare Function SelectPalette Lib "GDI32" ( _ByVal hDC As Long, ByVal hPalette As Long, _ByVal bForceBackground As Long) As LongPrivate Declare Function RealizePalette Lib "GDI32" (ByVal hDC As Long) As LongPrivate Declare Function GetWindowDC Lib "USER32" (ByVal hWnd As Long) As LongPrivate Declare Function GetDC Lib "USER32" (ByVal hWnd As Long) As LongPrivate Declare Function GetWindowRect Lib "USER32" (ByVal hWnd As Long, lpRect As RECT) As LongPrivate Declare Function ReleaseDC Lib "USER32" (ByVal hWnd As Long, ByVal hDC As Long) As LongPrivate Declare Function GetDesktopWindow Lib "USER32" () As LongPrivate Type PicBmpSize As LongType As LonghBmp As LonghPal As LongReserved As LongEnd TypePrivate Declare Function OleCreatePictureIndirect _Lib "olepro32.dll" ( PicDesc As PicBmp, RefIID As GUID, _ByVal fPictureOwnsHandle As Long, IPic As IPicture) As Long#ElseIf Win16 ThenPrivate Const RASTERCAPS As Integer = 38Private Const RC_PALETTE As Integer = &H100Private Const SIZEPALETTE As Integer = 104Private Type RECTLeft As IntegerTop As IntegerRight As IntegerBottom As IntegerEnd TypePrivate Declare Function CreateCompatibleDC Lib "GDI" ( _ByVal hDC As Integer) As IntegerPrivate Declare Function CreateCompatibleBitmap Lib "GDI" ( _ByVal hDC As Integer, ByVal nWidth As Integer, _ByVal nHeight As Integer) As IntegerPrivate Declare Function GetDeviceCaps Lib "GDI" ( _ByVal hDC As Integer, ByVal iCapabilitiy As Integer) As IntegerPrivate Declare Function GetSystemPaletteEntries Lib "GDI" ( _ByVal hDC As Integer, ByVal wStartIndex As Integer, _ByVal wNumEntries As Integer, _lpPaletteEntries As PALETTEENTRY) As IntegerPrivate Declare Function CreatePalette Lib "GDI" ( _lpLogPalette As LOGPALETTE) As IntegerPrivate Declare Function SelectObject Lib "GDI" ( _ByVal hDC As Integer, ByVal hObject As Integer) As IntegerPrivate Declare Function BitBlt Lib "GDI" ( _ByVal hDCDest As Integer, ByVal XDest As Integer, _ByVal YDest As Integer, ByVal nWidth As Integer, _ByVal nHeight As Integer, ByVal hDCSrc As Integer, _ByVal XSrc As Integer, ByVal YSrc As Integer, _ByVal dwRop As Long) As IntegerPrivate Declare Function DeleteDC Lib "GDI" ( _ByVal hDC As Integer) As IntegerPrivate Declare Function GetForegroundWindow Lib "USER" _Alias "GetActiveWindow" () As IntegerPrivate Declare Function SelectPalette Lib "USER" ( _ByVal hDC As Integer, ByVal hPalette As Integer, ByVal _bForceBackground As Integer) As IntegerPrivate Declare Function RealizePalette Lib "USER" ( _ByVal hDC As Integer) As IntegerPrivate Declare Function GetWindowDC Lib "USER" ( _ByVal hWnd As Integer) As IntegerPrivate Declare Function GetDC Lib "USER" ( _ByVal hWnd As Integer) As IntegerPrivate Declare Function GetWindowRect Lib "USER" ( _ByVal hWnd As Integer, lpRect As RECT) As IntegerPrivate Declare Function ReleaseDC Lib "USER" ( _ByVal hWnd As Integer, ByVal hDC As Integer) As IntegerPrivate Declare Function GetDesktopWindow Lib "USER" () As IntegerPrivate Type PicBmpSize As IntegerType As IntegerhBmp As IntegerhPal As IntegerReserved As IntegerEnd TypePrivate Declare Function OleCreatePictureIndirect _Lib "oc25.dll" ( PictDesc As PicBmp, RefIID As GUID, _ByVal fPictureOwnsHandle As Integer, IPic As IPicture) _As Integer#End If''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' CreateBitmapPicture' - Creates a bitmap type Picture object from a bitmap and' palette.'' hBmp' - Handle to a bitmap.'' hPal' - Handle to a Palette.' - Can be null if the bitmap doesn't use a palette.'' Returns' - Returns a Picture object containing the bitmap.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''#If Win32 ThenPublic Function CreateBitmapPicture(ByVal hBmp As Long, _ByVal hPal As Long) As PictureDim r As Long#ElseIf Win16 ThenPublic Function CreateBitmapPicture(ByVal hBmp As Integer, _ByVal hPal As Integer) As PictureDim r As Integer#End IfDim Pic As PicBmp' IPicture requires a reference to "Standard OLE Types."Dim IPic As IPictureDim IID_IDispatch As GUID' Fill in with IDispatch Interface ID.With IID_IDispatch.Data1 = &H20400.Data4(0) = &HC0.Data4(7) = &H46End With' Fill Pic with necessary parts.With Pic.Size = Len(Pic) ' Length of structure..Type = vbPicTypeBitmap ' Type of Picture (bitmap)..hBmp = hBmp ' Handle to bitmap..hPal = hPal ' Handle to palette (may be null).End With' Create Picture object.r = OleCreatePictureIndirect(Pic, IID_IDispatch, 1, IPic)' Return the new Picture object.Set CreateBitmapPicture = IPicEnd Function''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' CaptureWindow' - Captures any portion of a window.'' hWndSrc' - Handle to the window to be captured.'' Client' - If True CaptureWindow captures from the client area of the' window.' - If False CaptureWindow captures from the entire window.'' LeftSrc, TopSrc, WidthSrc, HeightSrc' - Specify the portion of the window to capture.' - Dimensions need to be specified in pixels.'' Returns' - Returns a Picture object containing a bitmap of the specified' portion of the window that was captured.'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''#If Win32 ThenPublic Function CaptureWindow(ByVal hWndSrc As Long, _ByVal Client As Boolean, ByVal LeftSrc As Long, _ByVal TopSrc As Long, ByVal WidthSrc As Long, _ByVal HeightSrc As Long) As PictureDim hDCMemory As LongDim hBmp As LongDim hBmpPrev As LongDim r As LongDim hDCSrc As LongDim hPal As LongDim hPalPrev As LongDim RasterCapsScrn As LongDim HasPaletteScrn As LongDim PaletteSizeScrn As Long#ElseIf Win16 ThenPublic Function CaptureWindow(ByVal hWndSrc As Integer, _ByVal Client As Boolean, ByVal LeftSrc As Integer, _ByVal TopSrc As Integer, ByVal WidthSrc As Long, _ByVal HeightSrc As Long) As PictureDim hDCMemory As IntegerDim hBmp As IntegerDim hBmpPrev As IntegerDim r As IntegerDim hDCSrc As IntegerDim hPal As IntegerDim hPalPrev As IntegerDim RasterCapsScrn As IntegerDim HasPaletteScrn As IntegerDim PaletteSizeScrn As Integer#End IfDim LogPal As LOGPALETTE' Depending on the value of Client get the proper device context.If Client ThenhDCSrc = GetDC(hWndSrc) ' Get device context for client area.ElsehDCSrc = GetWindowDC(hWndSrc) ' Get device context for entire' window.End If' Create a memory device context for the copy process.hDCMemory = CreateCompatibleDC(hDCSrc)' Create a bitmap and place it in the memory DC.hBmp = CreateCompatibleBitmap(hDCSrc, WidthSrc, HeightSrc)hBmpPrev = SelectObject(hDCMemory, hBmp)' Get screen properties.RasterCapsScrn = GetDeviceCaps(hDCSrc, RASTERCAPS) ' Raster' capabilities.HasPaletteScrn = RasterCapsScrn And RC_PALETTE ' Palette' support.PaletteSizeScrn = GetDeviceCaps(hDCSrc, SIZEPALETTE) ' Size of' palette.' If the screen has a palette make a copy and realize it.If HasPaletteScrn And (PaletteSizeScrn = 256) Then' Create a copy of the system palette.LogPal.palVersion = &H300LogPal.palNumEntries = 256r = GetSystemPaletteEntries(hDCSrc, 0, 256, _LogPal.palPalEntry(0))hPal = CreatePalette(LogPal)' Select the new palette into the memory DC and realize it.hPalPrev = SelectPalette(hDCMemory, hPal, 0)r = RealizePalette(hDCMemory)End If' Copy the on-screen image into the memory DC.r = BitBlt(hDCMemory, 0, 0, WidthSrc, HeightSrc, hDCSrc, _LeftSrc, TopSrc, vbSrcCopy)' Remove the new copy of the on-screen image.hBmp = SelectObject(hDCMemory, hBmpPrev)' If the screen has a palette get back the palette that was' selected in previously.If HasPaletteScrn And (PaletteSizeScrn = 256) ThenhPal = SelectPalette(hDCMemory, hPalPrev, 0)End If' Release the device context resources back to the system.r = DeleteDC(hDCMemory)r = ReleaseDC(hWndSrc, hDCSrc)' Call CreateBitmapPicture to create a picture object from the' bitmap and palette handles. Then return the resulting picture' object.Set CaptureWindow = CreateBitmapPicture(hBmp, hPal)End Function''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' CaptureScreen' - Captures the entire screen.'' Returns' - Returns a Picture object containing a bitmap of the screen.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Public Function CaptureScreen() As Picture#If Win32 ThenDim hWndScreen As Long#ElseIf Win16 ThenDim hWndScreen As Integer#End If' Get a handle to the desktop window.hWndScreen = GetDesktopWindow()' Call CaptureWindow to capture the entire desktop give the handle' and return the resulting Picture object.Set CaptureScreen = CaptureWindow(hWndScreen, False, 0, 0, _Screen.Width \ Screen.TwipsPerPixelX, _Screen.Height \ Screen.TwipsPerPixelY)End Function''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' CaptureForm' - Captures an entire form including title bar and border.'' frmSrc' - The Form object to capture.'' Returns' - Returns a Picture object containing a bitmap of the entire' form.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Public Function CaptureForm(frmSrc As Form) As Picture' Call CaptureWindow to capture the entire form given its window' handle and then return the resulting Picture object.Set CaptureForm = CaptureWindow(frmSrc.hWnd, False, 0, 0, _frmSrc.ScaleX(frmSrc.Width, vbTwips, vbPixels), _frmSrc.ScaleY(frmSrc.Height, vbTwips, vbPixels))End Function''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' CaptureClient' - Captures the client area of a form.'' frmSrc' - The Form object to capture.'' Returns' - Returns a Picture object containing a bitmap of the form's' client area.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Public Function CaptureClient(frmSrc As Form) As Picture' Call CaptureWindow to capture the client area of the form given' its window handle and return the resulting Picture object.Set CaptureClient = CaptureWindow(frmSrc.hWnd, True, 0, 0, _frmSrc.ScaleX(frmSrc.ScaleWidth, frmSrc.ScaleMode, vbPixels), _frmSrc.ScaleY(frmSrc.ScaleHeight, frmSrc.ScaleMode, vbPixels))End Function''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' CaptureActiveWindow' - Captures the currently active window on the screen.'' Returns' - Returns a Picture object containing a bitmap of the active' window.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Public Function CaptureActiveWindow() As Picture#If Win32 ThenDim hWndActive As LongDim r As Long#ElseIf Win16 ThenDim hWndActive As IntegerDim r As Integer#End IfDim RectActive As RECT' Get a handle to the active/foreground window.hWndActive = GetForegroundWindow()' Get the dimensions of the window.r = GetWindowRect(hWndActive, RectActive)' Call CaptureWindow to capture the active window given its' handle and return the Resulting Picture object.Set CaptureActiveWindow = CaptureWindow(hWndActive, False, 0, 0, _RectActive.Right - RectActive.Left, _RectActive.Bottom - RectActive.Top)End Function''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' PrintPictureToFitPage' - Prints a Picture object as big as possible.'' Prn' - Destination Printer object.'' Pic' - Source Picture object.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Public Sub PrintPictureToFitPage(Prn As Printer, Pic As Picture)Const vbHiMetric As Integer = 8Dim PicRatio As DoubleDim PrnWidth As DoubleDim PrnHeight As DoubleDim PrnRatio As DoubleDim PrnPicWidth As DoubleDim PrnPicHeight As Double' Determine if picture should be printed in landscape or portrait' and set the orientation.If Pic.Height >= Pic.Width ThenPrn.Orientation = vbPRORPortrait ' Taller than wide.ElsePrn.Orientation = vbPRORLandscape ' Wider than tall.End If' Calculate device independent Width-to-Height ratio for picture.PicRatio = Pic.Width / Pic.Height' Calculate the dimentions of the printable area in HiMetric.PrnWidth = Prn.ScaleX(Prn.ScaleWidth, Prn.ScaleMode, vbHiMetric)PrnHeight = Prn.ScaleY(Prn.ScaleHeight, Prn.ScaleMode, vbHiMetric)' Calculate device independent Width to Height ratio for printer.PrnRatio = PrnWidth / PrnHeight' Scale the output to the printable area.If PicRatio >= PrnRatio Then' Scale picture to fit full width of printable area.PrnPicWidth = Prn.ScaleX(PrnWidth, vbHiMetric, Prn.ScaleMode)PrnPicHeight = Prn.ScaleY(PrnWidth / PicRatio, vbHiMetric, _Prn.ScaleMode)Else' Scale picture to fit full height of printable area.PrnPicHeight = Prn.ScaleY(PrnHeight, vbHiMetric, Prn.ScaleMode)PrnPicWidth = Prn.ScaleX(PrnHeight * PicRatio, vbHiMetric, _Prn.ScaleMode)End If' Print the picture using the PaintPicture method.Prn.PaintPicture Pic, 0, 0, PrnPicWidth, PrnPicHeightEnd Sub7. Salve a aplicação.8. Antes de executá-la verifique as Referências internas ao OLE Automation - StdOle2.tlb.9. Execute a aplicação e teste-a.
Veja se consegue capturar o formulário e/ou alguma outra janelaVerifique se também consegue imprimí-las
Importante1: Uma vez que tenha capturado a imagem que deseja dentro do objeto Picture, você pode facilmente colocá-lo no Clipboard usando método SetData do objeto Clipboard.
Importante 2: Este código foi desenvolvido originalmente em VB e possivelmente precise efetuar alguns ajustes para o ambiente VBA.
Reference:
Nenhum comentário:
Postar um comentário