The PageController is responsible for all communication regarding Pages. Methods inside this controller can be called by window.SDK.page.{method-name}

Methods

  • This method returns a UInt8Array containing a PNG encoded image of the page.

    Parameters

    • OptionalpageId: string

      The id of a specific page. If not specified, selected page snapshot will be provided

    • Optionalsettings: null | SnapshotSettings

      an object to specify desired snapshot properties, e.g., resolution. If it's not provided, default settings will be applied, e.g., page resolution. Limit for largestAxisSize is 1000 px

    Returns Promise<Uint8Array<ArrayBufferLike>>

    UInt8Array snapshot of the given page

  • This method will set the height of the page to a specific value. This only works if the document is a project.

    Parameters

    • _pageId: undefined | string

      the id of a specific page.

    • height: string

      the string value that will be calculated (f.e. 1+1 will result in 2). The notation is in pixels

    Returns Promise<EditorResponse<null>>

  • This method will set the width of the page to a specific value. This only works if the document is a project.

    Parameters

    • _pageId: undefined | string

      the id of a specific page.

    • width: string

      the string value that will be calculated (f.e. 1+1 will result in 2) The notation is in pixels

    Returns Promise<EditorResponse<null>>