excalidraw/packages/utils
Aakansha Doshi 1ed53b153c
build: enable consistent type imports eslint rule (#7992)
* build: enable consistent type imports eslint rule

* change to warn

* fix the warning in example and excalidraw-app

* fix packages

* enable type annotations and throw error for the rule
2024-05-08 14:21:50 +05:30
..
__snapshots__ feat: follow mode (#6848) 2023-12-15 00:07:11 +01:00
geometry build: enable consistent type imports eslint rule (#7992) 2024-05-08 14:21:50 +05:30
CHANGELOG.md build: decouple package deps and introduce yarn workspaces (#7415) 2023-12-12 11:32:51 +05:30
README.md build: decouple package deps and introduce yarn workspaces (#7415) 2023-12-12 11:32:51 +05:30
bbox.ts build: enable consistent type imports eslint rule (#7992) 2024-05-08 14:21:50 +05:30
collision.ts build: enable consistent type imports eslint rule (#7992) 2024-05-08 14:21:50 +05:30
export.test.ts feat: move utils to utils package and make @excalidraw/utils a workspace (#7432) 2023-12-13 21:51:27 +05:30
export.ts build: enable consistent type imports eslint rule (#7992) 2024-05-08 14:21:50 +05:30
global.d.ts build: export types for @excalidraw/utils (#7736) 2024-02-29 15:43:04 +05:30
index.ts fix: export utils from excalidraw package in excalidraw library (#7731) 2024-02-28 11:14:57 +05:30
package.json build: export types for @excalidraw/utils (#7736) 2024-02-29 15:43:04 +05:30
tsconfig.json build: export types for @excalidraw/utils (#7736) 2024-02-29 15:43:04 +05:30
utils.unmocked.test.ts build: enable consistent type imports eslint rule (#7992) 2024-05-08 14:21:50 +05:30
webpack.prod.config.js build: decouple package deps and introduce yarn workspaces (#7415) 2023-12-12 11:32:51 +05:30
withinBounds.test.ts build: enable consistent type imports eslint rule (#7992) 2024-05-08 14:21:50 +05:30
withinBounds.ts build: enable consistent type imports eslint rule (#7992) 2024-05-08 14:21:50 +05:30

README.md

@excalidraw/utils

Install

npm install @excalidraw/utils

If you prefer Yarn over npm, use this command to install the Excalidraw utils package:

yarn add @excalidraw/utils

API

serializeAsJSON

See serializeAsJSON for API and description.

exportToBlob (async)

Export an Excalidraw diagram to a Blob.

exportToSvg

Export an Excalidraw diagram to a SVGElement.

Usage

Excalidraw utils is published as a UMD (Universal Module Definition). If you are using a module bundler (for instance, Webpack), you can import it as an ES6 module:

import { exportToSvg, exportToBlob } from "@excalidraw/utils";

To use it in a browser directly:

<script src="https://unpkg.com/@excalidraw/utils@0.1.0/dist/excalidraw-utils.min.js"></script>
<script>
  // ExcalidrawUtils is a global variable defined by excalidraw.min.js
  const { exportToSvg, exportToBlob } = ExcalidrawUtils;
</script>

Here's the exportToBlob and exportToSvg functions in action:

const excalidrawDiagram = {
  type: "excalidraw",
  version: 2,
  source: "https://excalidraw.com",
  elements: [
    {
      id: "vWrqOAfkind2qcm7LDAGZ",
      type: "ellipse",
      x: 414,
      y: 237,
      width: 214,
      height: 214,
      angle: 0,
      strokeColor: "#000000",
      backgroundColor: "#15aabf",
      fillStyle: "hachure",
      strokeWidth: 1,
      strokeStyle: "solid",
      roughness: 1,
      opacity: 100,
      groupIds: [],
      roundness: null,
      seed: 1041657908,
      version: 120,
      versionNonce: 1188004276,
      isDeleted: false,
      boundElementIds: null,
    },
  ],
  appState: {
    viewBackgroundColor: "#ffffff",
    gridSize: null,
  },
};

// Export the Excalidraw diagram as SVG string
const svg = exportToSvg(excalidrawDiagram);
console.log(svg.outerHTML);

// Export the Excalidraw diagram as PNG Blob URL
(async () => {
  const blob = await exportToBlob({
    ...excalidrawDiagram,
    mimeType: "image/png",
  });

  const urlCreator = window.URL || window.webkitURL;
  console.log(urlCreator.createObjectURL(blob));
})();