473,386 Members | 1,997 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

obtain handle of Image

hi all,

I'm trying to use the capCreateCaptureWindow (see
http://msdn.microsoft.com/library/de...turewindow.asp)
in a Windows Application Project. I want to pass Image as one of the
parameter but I figure that an Image doesn't have a handle. Previously I
had it working in a Web Application Project using the handle of a
PictureBox.

Is there any workaround? Please help and thank you very much.
Nov 20 '05 #1
6 2925
Cor
Hi anonymous,

If you tell a little bit more, what you want to do, then maybe we can give
you an answer in a more .Net approach with managed code?

Cor
I'm trying to use the capCreateCaptureWindow (see
http://msdn.microsoft.com/library/de...turewindow.asp) in a Windows Application Project. I want to pass Image as one of the
parameter but I figure that an Image doesn't have a handle. Previously I
had it working in a Web Application Project using the handle of a
PictureBox.

Is there any workaround? Please help and thank you very much.

Nov 20 '05 #2
Hi Cor,

Thanks for replying. I am trying to capture video from a webcam.

Merry Christmas!

"Cor" <no*@non.com> ¦b¶l¥ó news:%2****************@TK2MSFTNGP11.phx.gbl ¤¤¼¶
¼g...
Hi anonymous,

If you tell a little bit more, what you want to do, then maybe we can give
you an answer in a more .Net approach with managed code?

Cor
I'm trying to use the capCreateCaptureWindow (see

http://msdn.microsoft.com/library/de...turewindow.asp)
in a Windows Application Project. I want to pass Image as one of the
parameter but I figure that an Image doesn't have a handle. Previously I had it working in a Web Application Project using the handle of a
PictureBox.

Is there any workaround? Please help and thank you very much.


Nov 20 '05 #3
Hi,

Here is a class I have been working on that creates a capture window
inside a picturebox. In the opencapturewindow method pass in the handle of
the picturebox to place the window and the height and width of the window.
GetImage copies the image to the clipboard then returns the image as a
bitmap. Hope this helps.

Imports System.Runtime.InteropServices

Imports System.Windows.Forms

Imports System.Drawing

Public Class WebcamCaptureImage

Const WM_CAP As Short = &H400S

Const WM_CAP_DRIVER_CONNECT As Integer = WM_CAP + 10

Const WM_CAP_DRIVER_DISCONNECT As Integer = WM_CAP + 11

Const WM_CAP_EDIT_COPY As Integer = WM_CAP + 30

Const WM_CAP_SET_PREVIEW As Integer = WM_CAP + 50

Const WM_CAP_SET_PREVIEWRATE As Integer = WM_CAP + 52

Const WM_CAP_SET_SCALE As Integer = WM_CAP + 53

Const WS_CHILD As Integer = &H40000000

Const WS_VISIBLE As Integer = &H10000000

Const SWP_NOMOVE As Short = &H2S

Const SWP_NOSIZE As Short = 1

Const SWP_NOZORDER As Short = &H4S

Const HWND_BOTTOM As Short = 1

Dim iDevice As Integer = 0 ' Current device ID

Dim hHwnd As Integer ' Handle to preview window

Dim mDevice As Collection

Dim bPreviewing As Boolean = False

Declare Function SendMessage Lib "user32" Alias "SendMessageA" _

(ByVal hwnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, _

ByVal lParam As Integer) As Integer

Declare Function SetWindowPos Lib "user32" Alias "SetWindowPos" (ByVal hwnd
As Integer, _

ByVal hWndInsertAfter As Integer, ByVal x As Integer, ByVal y As Integer, _

ByVal cx As Integer, ByVal cy As Integer, ByVal wFlags As Integer) As
Integer

Declare Function DestroyWindow Lib "user32" (ByVal hndw As Integer) As
Boolean

Declare Function capCreateCaptureWindowA Lib "avicap32.dll" _

(ByVal lpszWindowName As String, ByVal dwStyle As Integer, _

ByVal x As Integer, ByVal y As Integer, ByVal nWidth As Integer, _

ByVal nHeight As Short, ByVal hWndParent As Integer, _

ByVal nID As Integer) As Integer

Declare Function capGetDriverDescriptionA Lib "avicap32.dll" (ByVal wDriver
As Short, _

ByVal lpszName As String, ByVal cbName As Integer, ByVal lpszVer As String,
_

ByVal cbVer As Integer) As Boolean

Private Sub LoadDeviceList()

Dim strName As String = Space(100)

Dim strVer As String = Space(100)

Dim bReturn As Boolean

Dim x As Integer = 0

'

' Load name of all avialable devices into the lstDevices

'

mDevice = New Collection

Do

'

' Get Driver name and version

'

bReturn = capGetDriverDescriptionA(x, strName, 100, strVer, 100)

'

' If there was a device add device name to the list

'

If bReturn Then

Dim wci As New WebcamInfo

With wci

..Device = strName

..Version = strVer

End With

mDevice.Add(wci)

End If

x += 1

Loop Until bReturn = False

End Sub

Public Function OpenPreviewWindow(ByVal hWndCapture As IntPtr, ByVal h As
Integer, ByVal w As Integer) As Boolean

'

' Open Preview window in picturebox

'

If bPreviewing Then ClosePreviewWindow()

hHwnd = capCreateCaptureWindowA(iDevice, WS_VISIBLE Or WS_CHILD, 0, 0, 320,
_

240, hWndCapture.ToInt32, 0)

'

' Connect to device

'

If SendMessage(hHwnd, WM_CAP_DRIVER_CONNECT, iDevice, 0) Then

'

'Set the preview scale

'

SendMessage(hHwnd, WM_CAP_SET_SCALE, True, 0)

'

'Set the preview rate in milliseconds

'

SendMessage(hHwnd, WM_CAP_SET_PREVIEWRATE, 66, 0)

'

'Start previewing the image from the camera

'

SendMessage(hHwnd, WM_CAP_SET_PREVIEW, True, 0)

'

' Resize window to fit in picturebox

'

SetWindowPos(hHwnd, HWND_BOTTOM, 0, 0, w, h, _

SWP_NOMOVE Or SWP_NOZORDER)

bPreviewing = True

Else

'

' Error connecting to device close window

'

DestroyWindow(hHwnd)

bPreviewing = False

End If

Return bPreviewing

End Function

Public Sub ClosePreviewWindow()

'

' Disconnect from device

'

SendMessage(hHwnd, WM_CAP_DRIVER_DISCONNECT, iDevice, 0)

'

' close window

'

DestroyWindow(hHwnd)

End Sub

Public Function GetImage() As Bitmap

Dim data As IDataObject

Dim bmap As Bitmap

If Not bPreviewing Then Return Nothing

'

' Copy image to clipboard

'

SendMessage(hHwnd, WM_CAP_EDIT_COPY, 0, 0)

'

' Get image from clipboard and convert it to a bitmap

'

data = Clipboard.GetDataObject()

If data.GetDataPresent(GetType(System.Drawing.Bitmap) ) Then

bmap = CType(data.GetData(GetType(System.Drawing.Bitmap)) , Bitmap)

ClosePreviewWindow()

Return bmap

End If

Return Nothing

End Function

Protected Overrides Sub Finalize()

If bPreviewing Then

ClosePreviewWindow()

End If

MyBase.Finalize()

End Sub

Public ReadOnly Property DeviceList() As Collection

Get

Return mDevice

End Get

End Property

Public Sub New()

LoadDeviceList()

If mDevice.Count = 0 Then

Throw New Exception("No Video Capture Device Present.")

End If

End Sub

End Class

Public Class WebcamInfo

Private mstrDevice As String

Private mstrVersion As String

Public Property Device() As String

Get

Return mstrDevice

End Get

Set(ByVal Value As String)

mstrDevice = Value

End Set

End Property

Public Property Version() As String

Get

Return mstrVersion

End Get

Set(ByVal Value As String)

mstrVersion = Value

End Set

End Property

End Class

Ken

---------------------------

"anonymous" <so*****@somedomain.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
hi all,

I'm trying to use the capCreateCaptureWindow (see
http://msdn.microsoft.com/library/de...turewindow.asp)
in a Windows Application Project. I want to pass Image as one of the
parameter but I figure that an Image doesn't have a handle. Previously I
had it working in a Web Application Project using the handle of a
PictureBox.

Is there any workaround? Please help and thank you very much.

Nov 20 '05 #4
* "anonymous" <so*****@somedomain.com> scripsit:
I'm trying to use the capCreateCaptureWindow (see
http://msdn.microsoft.com/library/de...turewindow.asp)
in a Windows Application Project. I want to pass Image as one of the
parameter but I figure that an Image doesn't have a handle. Previously I
had it working in a Web Application Project using the handle of a
PictureBox.


The function expects a window handle, so passing the form's handle or a
picturebox's handle('Handle' property) should work.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #5
Cor
Anonymous,
Sorry not my stuf, I thought it where pictures, but maybe the others can
help you better now with this message
Merry Christmas

Cor

Thanks for replying. I am trying to capture video from a webcam.

Nov 20 '05 #6
Hi,

Here is a link to more video capture info.
http://www.shrinkwrapvb.com/videocap.htm

Ken
---------------------
"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:uq**************@TK2MSFTNGP10.phx.gbl...
Hi,

Here is a class I have been working on that creates a capture
window inside a picturebox. In the opencapturewindow method pass in the
handle of the picturebox to place the window and the height and width of
the window. GetImage copies the image to the clipboard then returns the
image as a bitmap. Hope this helps.

Imports System.Runtime.InteropServices

Imports System.Windows.Forms

Imports System.Drawing

Public Class WebcamCaptureImage

Const WM_CAP As Short = &H400S

Const WM_CAP_DRIVER_CONNECT As Integer = WM_CAP + 10

Const WM_CAP_DRIVER_DISCONNECT As Integer = WM_CAP + 11

Const WM_CAP_EDIT_COPY As Integer = WM_CAP + 30

Const WM_CAP_SET_PREVIEW As Integer = WM_CAP + 50

Const WM_CAP_SET_PREVIEWRATE As Integer = WM_CAP + 52

Const WM_CAP_SET_SCALE As Integer = WM_CAP + 53

Const WS_CHILD As Integer = &H40000000

Const WS_VISIBLE As Integer = &H10000000

Const SWP_NOMOVE As Short = &H2S

Const SWP_NOSIZE As Short = 1

Const SWP_NOZORDER As Short = &H4S

Const HWND_BOTTOM As Short = 1

Dim iDevice As Integer = 0 ' Current device ID

Dim hHwnd As Integer ' Handle to preview window

Dim mDevice As Collection

Dim bPreviewing As Boolean = False

Declare Function SendMessage Lib "user32" Alias "SendMessageA" _

(ByVal hwnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, _

ByVal lParam As Integer) As Integer

Declare Function SetWindowPos Lib "user32" Alias "SetWindowPos" (ByVal
hwnd As Integer, _

ByVal hWndInsertAfter As Integer, ByVal x As Integer, ByVal y As Integer,
_

ByVal cx As Integer, ByVal cy As Integer, ByVal wFlags As Integer) As
Integer

Declare Function DestroyWindow Lib "user32" (ByVal hndw As Integer) As
Boolean

Declare Function capCreateCaptureWindowA Lib "avicap32.dll" _

(ByVal lpszWindowName As String, ByVal dwStyle As Integer, _

ByVal x As Integer, ByVal y As Integer, ByVal nWidth As Integer, _

ByVal nHeight As Short, ByVal hWndParent As Integer, _

ByVal nID As Integer) As Integer

Declare Function capGetDriverDescriptionA Lib "avicap32.dll" (ByVal
wDriver As Short, _

ByVal lpszName As String, ByVal cbName As Integer, ByVal lpszVer As
String, _

ByVal cbVer As Integer) As Boolean

Private Sub LoadDeviceList()

Dim strName As String = Space(100)

Dim strVer As String = Space(100)

Dim bReturn As Boolean

Dim x As Integer = 0

'

' Load name of all avialable devices into the lstDevices

'

mDevice = New Collection

Do

'

' Get Driver name and version

'

bReturn = capGetDriverDescriptionA(x, strName, 100, strVer, 100)

'

' If there was a device add device name to the list

'

If bReturn Then

Dim wci As New WebcamInfo

With wci

.Device = strName

.Version = strVer

End With

mDevice.Add(wci)

End If

x += 1

Loop Until bReturn = False

End Sub

Public Function OpenPreviewWindow(ByVal hWndCapture As IntPtr, ByVal h As
Integer, ByVal w As Integer) As Boolean

'

' Open Preview window in picturebox

'

If bPreviewing Then ClosePreviewWindow()

hHwnd = capCreateCaptureWindowA(iDevice, WS_VISIBLE Or WS_CHILD, 0, 0,
320, _

240, hWndCapture.ToInt32, 0)

'

' Connect to device

'

If SendMessage(hHwnd, WM_CAP_DRIVER_CONNECT, iDevice, 0) Then

'

'Set the preview scale

'

SendMessage(hHwnd, WM_CAP_SET_SCALE, True, 0)

'

'Set the preview rate in milliseconds

'

SendMessage(hHwnd, WM_CAP_SET_PREVIEWRATE, 66, 0)

'

'Start previewing the image from the camera

'

SendMessage(hHwnd, WM_CAP_SET_PREVIEW, True, 0)

'

' Resize window to fit in picturebox

'

SetWindowPos(hHwnd, HWND_BOTTOM, 0, 0, w, h, _

SWP_NOMOVE Or SWP_NOZORDER)

bPreviewing = True

Else

'

' Error connecting to device close window

'

DestroyWindow(hHwnd)

bPreviewing = False

End If

Return bPreviewing

End Function

Public Sub ClosePreviewWindow()

'

' Disconnect from device

'

SendMessage(hHwnd, WM_CAP_DRIVER_DISCONNECT, iDevice, 0)

'

' close window

'

DestroyWindow(hHwnd)

End Sub

Public Function GetImage() As Bitmap

Dim data As IDataObject

Dim bmap As Bitmap

If Not bPreviewing Then Return Nothing

'

' Copy image to clipboard

'

SendMessage(hHwnd, WM_CAP_EDIT_COPY, 0, 0)

'

' Get image from clipboard and convert it to a bitmap

'

data = Clipboard.GetDataObject()

If data.GetDataPresent(GetType(System.Drawing.Bitmap) ) Then

bmap = CType(data.GetData(GetType(System.Drawing.Bitmap)) , Bitmap)

ClosePreviewWindow()

Return bmap

End If

Return Nothing

End Function

Protected Overrides Sub Finalize()

If bPreviewing Then

ClosePreviewWindow()

End If

MyBase.Finalize()

End Sub

Public ReadOnly Property DeviceList() As Collection

Get

Return mDevice

End Get

End Property

Public Sub New()

LoadDeviceList()

If mDevice.Count = 0 Then

Throw New Exception("No Video Capture Device Present.")

End If

End Sub

End Class

Public Class WebcamInfo

Private mstrDevice As String

Private mstrVersion As String

Public Property Device() As String

Get

Return mstrDevice

End Get

Set(ByVal Value As String)

mstrDevice = Value

End Set

End Property

Public Property Version() As String

Get

Return mstrVersion

End Get

Set(ByVal Value As String)

mstrVersion = Value

End Set

End Property

End Class

Ken

---------------------------

"anonymous" <so*****@somedomain.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
hi all,

I'm trying to use the capCreateCaptureWindow (see
http://msdn.microsoft.com/library/de...turewindow.asp)
in a Windows Application Project. I want to pass Image as one of the
parameter but I figure that an Image doesn't have a handle. Previously I
had it working in a Web Application Project using the handle of a
PictureBox.

Is there any workaround? Please help and thank you very much.


Nov 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: midwesthills | last post by:
Is there a way to obtain the relative path of an image through javascript? I'm using document.imageName.src right now, and all I get is the absolute path. Thanks in advance for the help!
0
by: TC | last post by:
Hello, Here is what I'm trying to do: -- Make sure both MS Excel and MS Word are running -- Create an Excel chart -- Save the Excel file -- Copy the Excel chart onto the clipboard using Ctrl...
5
by: TC | last post by:
Hello, Here is what I'm trying to do: -- Make sure both MS Excel and MS Word are running -- Create an Excel chart -- Save the Excel file -- Copy the Excel chart onto the clipboard using Ctrl...
4
by: Terry | last post by:
There are a number of things about using unmanaged resources in Windows Forms programming that is unclear to me. In C++, if you loaded an icon resource using "ExtractIcon()", the resource was...
5
by: MuZZy | last post by:
Hello, How do i get Windows Desktop picture to further put it into pictureBox component? Thank you, Andrey
2
by: kim d | last post by:
Hi, I know already this is a really stupid question but how do you obtain a handle to an application or a window in C#. Formerly I used Application.Handle in Delphi so I'm looking for the...
2
by: | last post by:
Hi, we are planning to rewrite an extisting C++ image processing application/library in C#. Now several question arouse where I hope you can help me: So far we allocated a block of memory as...
1
by: Etienne Desautels | last post by:
Hi, I'm working on project where I need to grab video from an Axis IP camera. This camera send a stream of a multipart message on HTTP. I write this code (at the bottom of the message) to read...
14
by: Steve K. | last post by:
I have a method that I use to get a System.Drawing.Image from a file without keeping a handle on the file open (so I can delete the file). Here is the code: <code> public static Image...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.