Class EditorImage

Handles lookup/storage of elements in the image

Methods

  • Forces a re-render of elem when the image is next re-rendered as a whole. Does nothing if elem is not in this.

    Parameters

    Returns void

  • Renders all nodes visible from viewport (or all nodes if viewport = null).

    viewport is used to improve rendering performance. If given, it must match the viewport used by the renderer (if any).

    Parameters

    Returns void

  • Returns a Command that sets whether the image should autoresize when AbstractComponents are added/removed.

    Parameters

    • autoresize: boolean

    Returns Command

    Example

    import { Editor } from 'js-draw';
    
    const editor = new Editor(document.body);
    const toolbar = editor.addToolbar();
    
    // Add a save button to demonstrate what the output looks like
    // (it should change size to fit whatever was drawn)
    toolbar.addSaveButton(() => {
      document.body.replaceChildren(editor.toSVG({ sanitize: true }));
    });
    
    // Actually using setAutoresizeEnabled:
    //
    // To set autoresize without announcing for accessibility/making undoable
    const addToHistory = false;
    editor.dispatchNoAnnounce(editor.image.setAutoresizeEnabled(true), addToHistory);
    
    // Add to undo history **and** announce for accessibility
    //editor.dispatch(editor.image.setAutoresizeEnabled(true), true);
    
  • Returns a command that adds the given element to the EditorImage. If applyByFlattening is true, the content of the wet ink renderer is rendered onto the main rendering canvas instead of doing a full re-render.

    Parameters

    Returns SerializableCommand

    See

    Display.flatten

    Example

    ```ts,runnable
    import {
    Editor, EditorImage, Stroke, pathToRenderable.
    Path, Color4,
    } from 'js-draw';

    const editor = new Editor(document.body);

    const stroke = new Stroke([
    pathToRenderable(Path.fromString('m0,0 l100,100 l0,-10 z'), { fill: Color4.red }),
    ]);
    editor.dispatch(EditorImage.addElement(stroke));
    
    

Generated using TypeDoc

OpenSource licenses