Server IP : 86.38.243.181 / Your IP : 216.73.216.86 Web Server : LiteSpeed System : Linux in-mum-web1336.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u986601745 ( 986601745) PHP Version : 7.4.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u986601745/domains/emrskalsi.com/public_html/admin/css/../js/cropper/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
(function ($) { "use strict"; var $image = $(".image-crop > img") $($image).cropper({ aspectRatio: 1.618, preview: ".img-preview", done: function(data) { // Output the result data for cropping image. } }); var $inputImage = $("#inputImage"); if (window.FileReader) { $inputImage.change(function() { var fileReader = new FileReader(), files = this.files, file; if (!files.length) { return; } file = files[0]; if (/^image\/\w+$/.test(file.type)) { fileReader.readAsDataURL(file); fileReader.onload = function () { $inputImage.val(""); $image.cropper("reset", true).cropper("replace", this.result); }; } else { showMessage("Please choose an image file."); } }); } else { $inputImage.addClass("hide"); } $("#download").on('click', function() { window.open($image.cropper("getDataURL")); }); $("#zoomIn").on('click', function() { $image.cropper("zoom", 0.1); }); $("#zoomOut").on('click', function() { $image.cropper("zoom", -0.1); }); $("#rotateLeft").on('click', function() { $image.cropper("rotate", 45); }); $("#rotateRight").on('click', function() { $image.cropper("rotate", -45); }); $("#setDrag").on('click', function() { $image.cropper("setDragMode", "crop"); }); })(jQuery);