ICanvasRenderingContext2DPutImageData Method (IImageData, Double, Double) |
Paints data from the given ImageData object onto the bitmap.
If a dirty rectangle is provided, only the pixels from that rectangle are painted.
This method is not affected by the canvas transformation matrix.
Namespace: Aspose.Html.Dom.CanvasAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxvoid PutImageData(
IImageData imagedata,
double dx,
double dy
)
Sub PutImageData (
imagedata As IImageData,
dx As Double,
dy As Double
)
void PutImageData(
IImageData^ imagedata,
double dx,
double dy
)
abstract PutImageData :
imagedata : IImageData *
dx : float *
dy : float -> unit
Parameters
- imagedata
- Type: Aspose.Html.Dom.CanvasIImageData
An ImageData object containing the array of pixel values. - dx
- Type: SystemDouble
Horizontal position (x-coordinate) at which to place the image data in the destination canvas. - dy
- Type: SystemDouble
Vertical position (y-coordinate) at which to place the image data in the destination canvas.
See Also