www.gnostice.com 

DrawImageMemXY Method

Top  Previous  Next

The DrawImageMemXY method draws an image with X, Y coordinates (from memory) at a specified location.

 

 

 

 

Syntax

 

 

[VC++]

void DrawImageMemXY(double X, double Y, long ImageBuf, long BufSize, long ImageType);

 

[C#]

public abstract new void DrawImageMemXY ( System.Double X , System.Double Y , System.Int32 ImageBuf , System.Int32 BufSize , eDocEngineX.TxgtImageType ImageType )

 

[VB]

Sub DrawImageMemXY(X As Double, Y As Double, ImageBuf As Long, BufSize As Long, ImageType As TxgtImageType)

 

 

 

 

 

 

Parameters

 

X

[in] Specifies the x-coordinate of the upper-left corner of the rendered image.

 

 

Y

[in] Specifies the y-coordinate of the upper-left corner of the rendered image.

 

 

ImageBuf

The starting address of the memory where image data is stored.

 

 

 

ImageBufSize

The size of the buffer.

 

 

 

ImageType

The type of the image.

 

 

 

 

Example Code

 

 

For an example code, see Draw Image.