-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
68 lines (59 loc) · 1.92 KB
/
script.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
JS: var j = jQuery.noConflict();
j(document).ready(function () {
var input = j("#custom_image")[0];
var container = j("#crop-container")[0];
var cropButton = j("#crop_image")[0];
var imageUpload = j(".image-upload")[0];
var cropType = j(imageUpload).data("crop-type");
var croppie;
input.addEventListener("change", function (e) {
var file = e.target.files[0];
if (file) {
var reader = new FileReader();
reader.onload = function (e) {
// create an image and add it to the container
var img = document.createElement("img");
img.id = "image-to-crop";
img.src = e.target.result;
container.innerHTML = ""; // remove previous image if it exists
container.appendChild(img);
container.style.display = "block";
cropButton.style.display = "block";
// initialize croppie on the new image
croppie = new Croppie(img, {
enableExif: true,
viewport: { width: 400, height: 400, type: cropType },
boundary: { width: 500, height: 500 },
enableResize: true,
enableOrientation: true,
mouseWheelZoom: "ctrl"
});
};
reader.readAsDataURL(file);
}
});
cropButton.addEventListener("click", function () {
croppie
.result({
type: "base64",
size: "actual" // This ensures you get the actual size of the cropped area
})
.then(function (base64Image) {
var img = document.querySelector("#image-to-crop");
img.src = base64Image;
cropButton.style.display = "none";
j.ajax({
type: "POST",
url: "/wp-admin/admin-ajax.php",
data: {
action: "upload_image",
image: base64Image
},
success: function (response) {
console.log("Image uploaded successfully:", response);
}
});
});
croppie.destroy();
});
});