Create a Bitmap image of certain size

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.0.1010 (2.2.0.1010)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Bitmap ToBitmap(
	int width,
	int height
)
Public Function ToBitmap ( _
	width As Integer, _
	height As Integer _
) As Bitmap
public:
Bitmap^ ToBitmap(
	int width, 
	int height
)

Parameters

width
Int32
The width of the bitmap
height
Int32
The height of the bitmap

Return Value

This image in Bitmap format of the specific size

See Also