ICanvasRenderingContext2DDrawImage Method (HTMLImageElement, Double, Double) |
Draws the specified image.
Namespace: Aspose.Html.Dom.CanvasAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxvoid DrawImage(
HTMLImageElement image,
double dx,
double dy
)
Sub DrawImage (
image As HTMLImageElement,
dx As Double,
dy As Double
)
void DrawImage(
HTMLImageElement^ image,
double dx,
double dy
)
abstract DrawImage :
image : HTMLImageElement *
dx : float *
dy : float -> unit
Parameters
- image
- Type: Aspose.HtmlHTMLImageElement
The HTMLImageElement to draw into the context. - dx
- Type: SystemDouble
The X coordinate in the destination canvas at which to place the top-left corner of the source image. - dy
- Type: SystemDouble
The Y coordinate in the destination canvas at which to place the top-left corner of the source image.
See Also