Images in js-draw
are made up of images, text, strokes, and other components. Each is represented by a subclass of AbstractComponent.
Let's see how to add a stroke to an editor. Here's a few of the APIs we'll use:
Above:
Editor
is created and added to the document.path
. For information about how to specify paths, see the MDN documentation on <path>
elements.4.
.editor.dispatch
adds the command to the undo history and announces it for accessibility tools. Try replacing editor.dispatch(command)
with command.apply(editor)
. What's the difference?Next, we'll create a large number of strokes
Above:
Color4.orange
with Color4.ofRGBA(x / 100, 0, y / 100, 1)
.strokeWidth = 3
with strokeWidth = 10
.editor.dispatch
into the for
loop and dispatching the commands one-by-one. Does this change what the undo and redo buttons do? See uniteCommands for more information.Let's start with the previous example and see how to:
Above:
components
.
Stroke
.Instead of component.updateStyle
, we could have changed the component in some other way. For example, replacing the component.updateStyle(...)
with component.transformBy
,
See Mat33 for more transformation types.
The Erase command can be used to remove components from the image:
Things to try:
eraseCommand.apply(editor)
. What's the effect on the undo/redo behavior?Erase
command with a Duplicate command, then repositioning the original strokes.