All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dragome.web.html.dom.html5canvas.interfaces.HTMLCanvasElement Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
package com.dragome.web.html.dom.html5canvas.interfaces;

import org.w3c.dom.html.HTMLElement;

public interface HTMLCanvasElement extends HTMLElement, CanvasImageSource
{
	int getWidth();
	void setWidth(int width);
	int getHeight();
	void setHeight(int height);
	CanvasRenderingContext2D getContext(String contextId);
	void setCoordinateSpaceWidth(int canvasWidth);
	void setCoordinateSpaceHeight(int canvasHeight);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy