JavaScript image cropper
Image upload and edition using Lemonadejs
A full working image upload and editor using the jSuites JavaScript cropper component and lemonadejs.
Source code
<html> <script src="https://jsuites.net/v4/jsuites.js"></script> <script src="https://jsuites.net/v4/jsuites.layout.js"></script> <link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" /> <link rel="stylesheet" href="https://jsuites.net/v4/jsuites.layout.css" type="text/css" /> <script src="https://jsuites.net/components/lemonadejs/lemonade.js"></script> <script src="https://jsuites.net/components/lemonadejs/lemonade.photo.js"></script> <div id="image-cropper-component"></div> <script> photo(document.getElementById('image-cropper-component')); </script> </html>