See Also Examples Applies To
Draws a skewed image from 3 points of co-ordinates into the native image.
Syntax
object.DrawImageSkewing (nimageID, nXLeftTop, nYLeftTop, nXRightTop, nYRightTop, nXLeftBottom, nYLeftBottom, nInterpolationMode, bAntiAlias)
The DrawImageSkewing syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| nimageID | Required. Long. GDI+ bitmap handle. Image ID of the image to draw into the native image. |
| nXLeftTop | Required. Long. Left pixel destination of the first point. |
| nYLeftTop | Required. Long. Top pixel destination of the first point. |
| nXRightTop | Required. Long. Left pixel destination of the second point. |
| nYRightTop | Required. Long. Top pixel destination of the second point. |
| nXLeftBottom | Required. Long. Left pixel destination of the third point. |
| nYLeftBottom | Required. Long. Left pixel destination of the third point. |
| nInterpolationMode | Optional. Long InterpolationMode. Default value is 5 (InterpolationMode.InterpolationModeNearestNeighbor). |
| bAntiAlias | Optional. Boolean. Default value is False. Set to True to apply the Antialiasing algorithm else False. |
Returns
Remarks
The ImagingStatus constants are defined HERE
Category
Draw (Images)