LokaSketch Editor SDK

A powerful image design editor SDK for React & Next.js

🎨

Canvas Editor

Drag, resize, rotate elements with intuitive controls

📝

Text & Images

Add text, upload images, draw freehand shapes

📚

Layers Panel

Organize elements with lock, hide, and reorder

🔄

Undo/Redo

Full history with keyboard shortcuts

📤

Export

Download as PNG, JPG, or PDF

💾

JSON Persistence

Save and load designs as JSON

Quick Start

import { CustomEditor } from '@lokasketch/core'

function MyApp() {
  return (
    <CustomEditor
      width={800}
      height={600}
      onDesignChange={(json) => {
        // Save design JSON
        console.log(json)
      }}
    />
  )
}