ECodedImage2::DrawObjectWithCurrentPen

This method is deprecated.

Draw the designated object.

Namespace: Euresys::Open_eVision

[C++]

void DrawObjectWithCurrentPen(
   HDC graphicContext,
   OEV_UINT32 objectIndex,
   float zoomX,
   float zoomY,
   float panX,
   float panY
)

void DrawObjectWithCurrentPen(
   HDC graphicContext,
   OEV_UINT32 layerIndex,
   OEV_UINT32 objectIndex,
   float zoomX,
   float zoomY,
   float panX,
   float panY
)

Parameters

graphicContext

Graphic context on which to draw.

objectIndex

Index of the object to draw.

zoomX

Horizontal zooming factor. By default, no scaling is used.

zoomY

Vertical zooming factor. If set to 0, the default value, the horizontal zooming factor is used instead, so as to provide isotropic zooming.

panX

Horizontal panning value expressed in pixels. By default, no panning occurs.

panY

Vertical panning value expressed in pixels. By default, no panning occurs.

layerIndex

The index of the layer of interest. If this parameter is left unspecified, the default layer will be taken into consideration.

Remarks

Drawing is done in the device context associated to the desired window. The current pen is used.

This methods throws an exception if no layer index is specified and if, simultaneously, the coded image <contains several layers. Indeed, in such a case, no default layer exists.

Deprecation notice: All methods taking HDC as parameter are deprecated. It is recommended to use their alternative taking a EDrawAdapter by using a instance of EWindowsDrawAdapter.

ECodedImage2.DrawObjectWithCurrentPen

This method is deprecated.

Draw the designated object.

Namespace: Euresys.Open_eVision

[C#]

void DrawObjectWithCurrentPen(
   IntPtr graphicContext,
   uint objectIndex,
   float zoomX,
   float zoomY,
   float panX,
   float panY
)

void DrawObjectWithCurrentPen(
   IntPtr graphicContext,
   uint layerIndex,
   uint objectIndex,
   float zoomX,
   float zoomY,
   float panX,
   float panY
)

Parameters

graphicContext

Graphic context on which to draw.

objectIndex

Index of the object to draw.

zoomX

Horizontal zooming factor. By default, no scaling is used.

zoomY

Vertical zooming factor. If set to 0, the default value, the horizontal zooming factor is used instead, so as to provide isotropic zooming.

panX

Horizontal panning value expressed in pixels. By default, no panning occurs.

panY

Vertical panning value expressed in pixels. By default, no panning occurs.

layerIndex

The index of the layer of interest. If this parameter is left unspecified, the default layer will be taken into consideration.

Remarks

Drawing is done in the device context associated to the desired window. The current pen is used.

This methods throws an exception if no layer index is specified and if, simultaneously, the coded image <contains several layers. Indeed, in such a case, no default layer exists.

Deprecation notice: All methods taking HDC as parameter are deprecated. It is recommended to use their alternative taking a EDrawAdapter by using a instance of EWindowsDrawAdapter.