Uses of Class
org.pepstock.charba.client.dom.elements.ImageData
-
Packages that use ImageData Package Description org.pepstock.charba.client.dom.elements Contains a set of DOM elements that Charba is using. -
-
Uses of ImageData in org.pepstock.charba.client.dom.elements
Methods in org.pepstock.charba.client.dom.elements that return ImageData Modifier and Type Method Description ImageData
Context2dItem. createImageData(double width, double height)
Returns an emptyImageData
object representing the underlying pixel data for a specified portion of the canvas.ImageData
Context2dItem. getImageData(double sx, double sy, double sw, double sh)
Returns anImageData
object representing the underlying pixel data for a specified portion of the canvas.Methods in org.pepstock.charba.client.dom.elements with parameters of type ImageData Modifier and Type Method Description void
Context2dItem. putImageData(ImageData imagedata, double dx, double dy)
Paints data from the givenImageData
object onto the canvas.void
Context2dItem. putImageData(ImageData imagedata, double dx, double dy, double dirtyX, double dirtyY, double dirtyWidth, double dirtyHeight)
Paints data from the givenImageData
object onto the canvas.
-