Allows to crop image, cover some image areas with another images, merge them and send resulted image to the server
Go to file
Tony Air 49c102425f
Update package.json
2019-06-01 01:18:04 +07:00
dist Language fix 2019-06-01 00:56:48 +07:00
src Language fix 2019-06-01 00:56:48 +07:00
.gitignore Initial 2019-06-01 00:46:53 +07:00
LICENSE Initial commit 2019-06-01 00:43:58 +07:00
README.md Update README.md 2019-06-01 01:08:51 +07:00
package.json Update package.json 2019-06-01 01:18:04 +07:00
webpack.config.js Initial 2019-06-01 00:46:53 +07:00

README.md

cropper-image-mask

Allows to crop image and cover some image areas with another images.

  1. Select an image at your computer
  2. Crop image at the browser
  3. Select image mask and place it to the cropped image area u'd like to cover
  4. Select an other image mask or click "Submit"

Resulted image (cropped and merged with image masks) will be sent to the server using AJAX.

Example of uploading processing at src/upload.php

Demo

https://rawcdn.githack.com/a2nt/cropper-image-mask/master/dist/index.html

Usage

Install required modules using: npm install

Start development server: yarn start

Access development server at: http://127.0.0.1:8001

Build your cropper script: yarn build

Directory structure

src/ - your sources

-- src/app.scss - specific app style

-- src/_events.js - app events definitions

-- src/_ui.spinner.js - spinner example

-- src/_ui.form.croppie.scss - cropper-image-mask field style

-- src/_ui.form.croppie.js - cropper-image-mask field js

-- src/index.html - HTML example

-- src/img - some example images

-- src/upload.php - example of server-side processing

dist/ - compiled scipts after "yarn build"

You can open dist/index.html to see demo