Package | Description |
---|---|
com.google.gwt.canvas.dom.client |
Classes for HTML Canvas 2D support.
|
com.google.gwt.dom.client |
Classes for low-level DOM programming.
|
com.google.gwt.media.client |
Widgets for HTML Audio and Video support.
|
Modifier and Type | Method and Description |
---|---|
void |
Context2d.drawImage(VideoElement image,
double dx,
double dy)
Draws a video's current frame.
|
void |
Context2d.drawImage(VideoElement image,
double dx,
double dy,
double dw,
double dh)
Draws a scaled video's current frame.
|
void |
Context2d.drawImage(VideoElement image,
double sx,
double sy,
double sw,
double sh,
double dx,
double dy,
double dw,
double dh)
Draws a scaled subset of a video's current frame.
|
Modifier and Type | Method and Description |
---|---|
VideoElement |
Document.createVideoElement()
Creates a <video> element.
|
Modifier and Type | Method and Description |
---|---|
VideoElement |
Video.getVideoElement()
Returns the attached VideoElement.
|
Constructor and Description |
---|
Video(VideoElement element)
Protected constructor.
|