Copies an image from memory buffer.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void CopyFromMemory(
	IntPtr srcBuffer,
	int srcWidth,
	int srcHeight,
	IEImage..::..PixelFormat srcPixelFormat,
	IEImage..::..BitmapOrigin srcOrigin,
	int srcRowLen
)
Public Sub CopyFromMemory ( _
	srcBuffer As IntPtr, _
	srcWidth As Integer, _
	srcHeight As Integer, _
	srcPixelFormat As IEImage..::..PixelFormat, _
	srcOrigin As IEImage..::..BitmapOrigin, _
	srcRowLen As Integer _
)
public:
void CopyFromMemory(
	IntPtr srcBuffer, 
	int srcWidth, 
	int srcHeight, 
	IEImage..::..PixelFormat srcPixelFormat, 
	IEImage..::..BitmapOrigin srcOrigin, 
	int srcRowLen
)

Parameters

srcBuffer
IntPtr
Source memory buffer.
srcWidth
Int32
Source image width.
srcHeight
Int32
Source image height.
srcPixelFormat
IEImage..::..PixelFormat
Source pixel format.
srcOrigin
IEImage..::..BitmapOrigin
Source orientation.
srcRowLen
Int32
Source row length.

See Also