-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage-cropper.js
54 lines (43 loc) · 1.64 KB
/
image-cropper.js
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
// $(document).ready(function(){
// // var image_crop = $('#image_demo').croppie({
// // viewport: {
// // width: 300,
// // height: 300,
// // type:'circle' //circle
// // },
// // boundary:{
// // width: 350,
// // height: 350
// // }
// // });
// // $('#cover_image').on('click', function(){
// // });
// $('#cover_image').on('change', function(){
// // $('.modal-header').removeClass('ready');
// var reader = new FileReader();
// reader.onload = function (event) {
// $('#cover_image').val(''); // this will clear the input val.
// image_crop.croppie('bind', {
// url: event.target.result,
// });
// }
// reader.readAsDataURL(this.files[0]);
// $('#uploadimageModal').modal('show');
// console.log("hi");
// });
// $('.crop_image').click(function(event){
// $('#imgFileUpload').val('')
// var formData = new FormData();
// image_crop.croppie('result',{type:'blob',size:{width:600,height:600},format:'png'}).then(function(r) {
// document.getElementById('imgFileUpload').src = URL.createObjectURL(r, { oneTimeOnly: true });;
// // document.getElementById('imgFileUpload').src = r;
// var img = document.getElementById("imgFileUpload"); // $('img')[0]
// myImg = r;
// // src = URL.createObjectURL(r); // set src to blob url
// // console.log("image ust",img);
// saveImageTofb();
// // gciSaveImage(r);
// });
// $('#uploadimageModal').modal('hide');
// });
// });