Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 1.18 KB

README.md

File metadata and controls

65 lines (41 loc) · 1.18 KB

Luna Painter

Simple drawing tool.

Demo

https://luna.liriliri.io/?path=/story/painter

Install

Add the following script and style to your page.

<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/luna-toolbar/luna-toolbar.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/luna-painter/luna-painter.css" />
<script src="//cdn.jsdelivr.net/npm/luna-toolbar/luna-toolbar.js"></script>
<script src="//cdn.jsdelivr.net/npm/luna-painter/luna-painter.js"></script>

You can also get it on npm.

npm install luna-painter luna-toolbar --save
import 'luna-toolbar/luna-toolbar.css'
import 'luna-painter/luna-painter.css'
import LunaPainter from 'luna-painter'

Usage

const container = document.getElementById('container')
const painer = new LunaPainter(container)

Configuration

  • height(number): Canvas height.
  • tool(string): Initial used tool.
  • width(number): Canvas width.

Api

addLayer(): number

Add layer.

getActiveLayer(): Layer

Get active layer.

getCurrentToolName(): string

Get current tool name.

getTool(name: string): void | LunaComponent

Get tool.

useTool(name: string): void

Use tool.