Home
Softono

React Mobile Image Editor

Open source MIT TypeScript
12
Stars
2
Forks
7
Issues
1
Watchers
3 years
Last Commit

 About React Mobile Image Editor

This repository is a react component to edit images at mobile phone by Konvajs.

Platforms

Web Self-hosted

Languages

TypeScript

Links

Need Help Installing React Mobile Image Editor?

We provide expert installation service for this software. Our team will install, configure, and secure React Mobile Image Editor on your server. plans start at just $30.

React Mobile Image Editor

View on GitHub

react-mobile-image-editor

Installation

# npm
> npm install react-mobile-image-editor

# yarn
> yarn add react-mobile-image-editor

LiveDemo

Examples

import Editor, { useExport } from "react-mobile-image-editor";

import image from "./assets/chibubao.png";

const App = () => {
  const editorRef = useExport();

  const handleDownload = () => {
    console.log(editorRef.current.exportImage());
  };

  return (
    <Editor
      ref={editorRef}
      image={image}
      toolbarBottom={<button onClick={handleDownload}>Download</button>}
    />
  );
};