FreakingGenius - v0.1.0
    Preparing search index...

    Interface ImagePrimitive

    A raster image placed at an absolute canvas position.

    interface ImagePrimitive {
        height: number;
        id: string;
        kind: "image";
        position: Point;
        url: string;
        width: number;
    }
    Index

    Properties

    height: number

    Display height in logical pixels.

    id: string

    Unique primitive identifier (UUID v4).

    kind: "image"
    position: Point

    Top-left anchor in canvas pixels.

    url: string

    Resolvable URL or data URI for the image source.

    width: number

    Display width in logical pixels.