An open API service indexing awesome lists of open source software.

https://github.com/chenmoonmo/react-mobile-image-editor

This repository is a react component to edit images at mobile phone by Konvajs.
https://github.com/chenmoonmo/react-mobile-image-editor

editor image-cropper image-editor react react-component react-image-crop

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# react-mobile-image-editor

## Installation

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

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

## LiveDemo

## Examples

```javascript
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 (
Download}
/>
);
};
```