Cropper.js is a JavaScript library for cropping image.
With the Cropper.js, you can select an specific area of an image, and then upload the coordinates data to server-side to crop the image, or crop the image on browser-side directly.
https://fengyuanchen.github.io/cropperjs/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | //crop_image_before_upload.php <!DOCTYPE html> <html> <head> <title>Crop image before upload and insert to database using PHP Mysqli and CropperJS </title> <link rel= "stylesheet" href= "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> <script> $(document).ready( function (){ var $modal = $( '#modal_crop' ); var crop_image = document.getElementById( 'sample_image' ); var cropper; $( '#upload_image' ).change( function (event){ var files = event.target.files; var done = function (url){ crop_image.src = url; $modal .modal( 'show' ); }; if (files && files.length > 0) { reader = new FileReader(); reader.onload = function (event) { done(reader.result); }; reader.readAsDataURL(files[0]); } }); $modal .on( 'shown.bs.modal' , function () { cropper = new Cropper(crop_image, { aspectRatio: 1, viewMode: 3, preview: '.preview' }); }).on( 'hidden.bs.modal' , function (){ cropper.destroy(); cropper = null; }); $( '#crop_and_upload' ).click( function (){ canvas = cropper.getCroppedCanvas({ width:400, height:400 }); canvas.toBlob( function (blob){ url = URL.createObjectURL(blob); var reader = new FileReader(); reader.readAsDataURL(blob); reader.onloadend = function (){ var base64data = reader.result; $.ajax({ url: 'crop_upload.php' , method: 'POST' , data:{crop_image:base64data}, success: function (data) { $modal .modal( 'hide' ); } }); }; }); }); }); </script> <style> img { display: block; max-width: 100%; } .preview { overflow: hidden; width: 160px; height: 160px; margin: 10px; border: 1px solid red; } .modal-lg{ max-width: 1000px !important; } </style> </head> <body> <div class = "container" align= "center" > <br /> <h3 align= "center" >Crop image before upload and insert to database using PHP Mysqli and CropperJS</h3> <br /> <div class = "row" > <form method= "post" > <input type= "file" name= "crop_image" class = "crop_image" id= "upload_image" /> </form> <div class = "modal fade" id= "modal_crop" tabindex= "-1" role= "dialog" aria-labelledby= "modalLabel" aria-hidden= "true" > <div class = "modal-dialog modal-lg" role= "document" > <div class = "modal-content" > <div class = "modal-header" > <h5 class = "modal-title" >Crop Image Before Upload</h5> <button type= "button" class = "close" data-dismiss= "modal" aria-label= "Close" > <span aria-hidden= "true" >×</span> </button> </div> <div class = "modal-body" > <div class = "img-container" > <div class = "row" > <div class = "col-md-8" > <img src= "" id= "sample_image" /> </div> <div class = "col-md-4" > <div class = "preview" ></div> </div> </div> </div> </div> <div class = "modal-footer" > <button type= "button" id= "crop_and_upload" class = "btn btn-primary" >Crop</button> <button type= "button" class = "btn btn-secondary" data-dismiss= "modal" >Cancel</button> </div> </div> </div> </div> </div> </body> </html> |
1 2 3 4 5 6 7 | //dbcon.php <?php $conn = new mysqli( 'localhost' , 'root' , '' , 'testingdb' ); if ( $conn ->connect_error) { die ( 'Error : (' . $conn ->connect_errno . ') ' . $conn ->connect_error); } ?> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | //crop_upload.php <?php include "dbcon.php" ; if (isset( $_POST [ 'crop_image' ])) { $data = $_POST [ 'crop_image' ]; $image_array_1 = explode ( ";" , $data ); $image_array_2 = explode ( "," , $image_array_1 [1]); $base64_decode = base64_decode ( $image_array_2 [1]); $path_img = 'upload/' .time(). '.png' ; $imagename = '' .time(). '.png' ; file_put_contents ( $path_img , $base64_decode ); $sql2 = "INSERT INTO upload(imagename) VALUES ('$imagename')" ; $conn ->query( $sql2 ); } ?> |