cropper.js 实现裁剪图片并上传(PC端)

Cropper  

由于之前做项目的时候有需求是需要实现裁剪图片来做头像并上传到服务器,所以上网查询了很多资料,也试用了许多案例,发现cropper插件裁剪是比较完善的,所以结合之前的使用情况,编写了此案例。本案例是参考cropper站点实例,进行修改简化。

案例下载

option相关参数说明:

viewMode 显示模式
Type: Number
Default: 0
Options:
0: the crop box is just within the container 裁剪框只能在 1内移动
1: the crop box should be within the canvas 裁剪框 只能在 2图片内移动
2: the canvas should not be within the container 2图片 不全部铺满1 (即缩小时可以有一边出现空隙)
3: the container should be within the canvas 2图片 全部铺满1 (即 再怎么缩小也不会出现空隙)

dragMode 拖动模式
Default: ‘crop’
Options:
‘crop’: create a new crop box 当鼠标 点击一处时根据这个点重新生成一个 裁剪框
‘move’: move the canvas 可以拖动图片
‘none’: do nothing 图片就不能拖动了

toggleDragModeOnDblclick: 默认true .是否允许 拖动模式 “crop” 跟“move” 的切换状态。。即当点下为crop 模式,如果未松开拖动这时就是“move”模式。放开后又为“crop”模式。

preview: 截图的显示位置。类型:String

responsive:是否在窗口尺寸改变的时候重置cropper。类型:Boolean,默认值true。

checkImageOrigin:类型:Boolean,默认值true。默认情况下,插件会检测图片的源,如果是跨域图片,图片元素会被添加crossOriginclass,并会为图片的url添加一个时间戳来使getCroppedCanvas变为可用。添加时间戳会使图片重新加载,以使跨域图片能够使用getCroppedCanvas。在图片上添加crossOriginclass会阻止在图片url上添加时间戳,及图片的重新加载。

background:类型:Boolean,默认值true。是否在容器上显示网格背景。 要想改背景,是直接改,cropper.css样式中的 cropper-bg。

canvas(图片)相关
movable:类型:Boolean,默认值true。是否允许移动图片
rotatable:类型:Boolean,默认值true。是否允许旋转图片。
scalable: 默认 true 。 是否允许扩展图片。(暂时不知道干嘛用)
zoomable: 默认true, 石头允许缩放图片。
zoomOnWheel: 默认 true 是否允许鼠标滚轴 缩放图片
zoomOnTouch: 默认true 是否允许触摸缩放图片(触摸屏上两手指操作。)
wheelZoomRatio: 默认0.1 师表滚轴缩放图片比例。即滚一下。图片缩放多少。如 0.1 就是图片的10%

crop(裁剪框)相关
aspectRatio裁剪框比例 默认NaN
例如:: 1 / 1,//裁剪框比例 1:1
modal:类型:Boolean,默认值true。是否在剪裁框上显示黑色的模态窗口。
cropBoxMovable:默认true ,是否允许拖动裁剪框
cropBoxResizable:默认 true,//是否允许拖动 改变裁剪框大小
autoCrop:类型:Boolean,默认值true。是否允许在初始化时自动出现裁剪框。
autoCropArea:类型:Number,默认值0.8(图片的80%)。0-1之间的数值,定义自动剪裁框的大小。
highlight:类型:Boolean,默认值true。是否在剪裁框上显示白色的模态窗口。
guides:类型:Boolean,默认值true。是否在剪裁框上显示虚线。
center: 默认true 是否显示裁剪框 中间的+ restore : 类型:Boolean,默认值true 是否调整窗口大小后恢复裁剪区域。

大小相关
minContainerWidth:类型:Number,默认值200。容器的最小宽度。
minContainerHeight:类型:Number,默认值100。容器的最小高度。
minCanvasWidth:类型:Number,默认值0。canvas 的最小宽度(image wrapper)。
minCanvasHeight:类型:Number,默认值0。canvas 的最小高度(image wrapper)。

监听触发的方法
build:类型:Function,默认值null。build.cropper
事件的简写方式。 ====== 。控件初始化前执行
built:类型:Function,默认值null。built.cropper
事件的简写方式。 ====== 空间初始化完成后执行
dragstart:类型:Function,默认值null。dragstart.cropper
事件的简写方式。 ====== 拖动开始执行
dragmove:类型:Function,默认值null。dragmove.cropper
事件的简写方式。====== 拖动移动中执行
dragend:类型:Function,默认值null。dragend.cropper
事件的简写方式。====== 拖动结束执行
zoomin:类型:Function,默认值null。zoomin.cropper
事件的简写方式。 ====== 缩小执行
zoomout:类型:Function,默认值null。zoomout.cropper
事件的简写方式。 ====== 放大执行

index.html代码如下:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
  6. <link rel="stylesheet" href="css/cropper.css">
  7. <link rel="stylesheet" href="css/main.css">
  8. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  9. <!--[if lt IE 9]>
  10. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  11. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  12. <![endif]-->
  13. </head>
  14. <body>
  15. <!--[if lt IE 8]>
  16. <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
  17. <![endif]-->
  18. <!-- Content -->
  19. <div class="container" style="margin-top:50px;">
  20. <div class="row">
  21. <div class="col-md-9">
  22. <!-- <h3>Demo:</h3> -->
  23. <div class="img-container">
  24. ![](images/picture.jpg)
  25. </div>
  26. </div>
  27. <div class="col-md-3">
  28. <!-- <h3>Preview:</h3> -->
  29. <div class="docs-preview clearfix">
  30. <div class="img-preview preview-lg"></div>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="row">
  35. <div class="col-md-9 docs-buttons">
  36. <!-- <h3>Toolbar:</h3> -->
  37. <div class="btn-group">
  38. <button type="button" class="btn btn-primary" data-method="zoom" data-option="0.1" title="Zoom In">
  39. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("zoom", 0.1)">
  40. 放大
  41. </span>
  42. </button>
  43. <button type="button" class="btn btn-primary" data-method="zoom" data-option="-0.1" title="Zoom Out">
  44. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("zoom", -0.1)">
  45. 缩小
  46. </span>
  47. </button>
  48. </div>
  49. <div class="btn-group">
  50. <button type="button" class="btn btn-primary" data-method="move" data-option="-10" data-second-option="0" title="Move Left">
  51. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("move", -10, 0)">
  52. 左移
  53. </span>
  54. </button>
  55. <button type="button" class="btn btn-primary" data-method="move" data-option="10" data-second-option="0" title="Move Right">
  56. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("move", 10, 0)">
  57. 右移
  58. </span>
  59. </button>
  60. <button type="button" class="btn btn-primary" data-method="move" data-option="0" data-second-option="-10" title="Move Up">
  61. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("move", 0, -10)">
  62. 上移
  63. </span>
  64. </button>
  65. <button type="button" class="btn btn-primary" data-method="move" data-option="0" data-second-option="10" title="Move Down">
  66. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("move", 0, 10)">
  67. 下移
  68. </span>
  69. </button>
  70. </div>
  71. <div class="btn-group">
  72. <button type="button" class="btn btn-primary" data-method="rotate" data-option="-90" title="Rotate Left">
  73. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("rotate", -90)">
  74. 左转90º
  75. </span>
  76. </button>
  77. <button type="button" class="btn btn-primary" data-method="rotate" data-option="90" title="Rotate Right">
  78. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("rotate", 90)">
  79. 右转90º
  80. </span>
  81. </button>
  82. </div>
  83. <div class="btn-group">
  84. <button type="button" class="btn btn-primary" data-method="reset" title="Reset">
  85. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="$().cropper("reset")">
  86. 刷新
  87. </span>
  88. </button>
  89. <label class="btn btn-primary btn-upload" for="inputImage" title="Upload image file">
  90. <input type="file" class="sr-only" id="inputImage" name="file" accept=".jpg,.jpeg,.png,.gif,.bmp,.tiff">
  91. <span class="docs-tooltip" data-toggle="tooltip" data-animation="false" title="Import image with Blob URLs">
  92. 上传图片
  93. </span>
  94. </label>
  95. </div>
  96. <div class="btn-group btn-group-crop">
  97. <button class="btn btn-primary" data-method="getCroppedCanvas" data-option="{ "width": 180, "height": 90 }" type="button">
  98. 上传头像
  99. </button>
  100. </div>
  101. <!-- Show the cropped image in modal -->
  102. <div class="modal fade docs-cropped" id="getCroppedCanvasModal" aria-hidden="true" aria-labelledby="getCroppedCanvasTitle" role="dialog" tabindex="-1">
  103. <div class="modal-dialog">
  104. <div class="modal-content">
  105. <div class="modal-header">
  106. <h5 class="modal-title" id="getCroppedCanvasTitle">Cropped</h5>
  107. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  108. <span aria-hidden="true">×</span>
  109. </button>
  110. </div>
  111. <div class="modal-body"></div>
  112. <div class="modal-footer">
  113. <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
  114. <a class="btn btn-primary" id="download" href="javascript:void(0);" download="cropped.jpg">Download</a>
  115. </div>
  116. </div>
  117. </div>
  118. </div><!-- /.modal -->
  119. </div><!-- /.docs-buttons -->
  120. </div>
  121. <!-- Scripts -->
  122. <script src="js/jquery.min.js"></script>
  123. <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
  124. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
  125. <script src="js/cropper.js"></script>
  126. <script src="js/main.js"></script>
  127. </body>
  128. </html>

cropper.js部分参数代码:

  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
  3. typeof define === 'function' && define.amd ? define(['jquery'], factory) :
  4. (factory(global.$));
  5. }(this, (function ($) { 'use strict';
  6. $ = 'default' in $ ? $['default'] : $;
  7. var DEFAULTS = {
  8. // Define the view mode of the cropper
  9. viewMode: 0, // 0, 1, 2, 3 显示
  10. // Define the dragging mode of the cropper
  11. dragMode: 'crop', // 'crop', 'move' or 'none'
  12. // Define the aspect ratio of the crop box
  13. aspectRatio: NaN,
  14. // An object with the previous cropping result data
  15. data: null,
  16. // A selector for adding extra containers to preview
  17. preview: '',
  18. // Re-render the cropper when resize the window
  19. responsive: true,
  20. // Restore the cropped area after resize the window
  21. restore: true,
  22. // Check if the current image is a cross-origin image
  23. checkCrossOrigin: true,
  24. // Check the current image's Exif Orientation information
  25. checkOrientation: true,
  26. // Show the black modal
  27. modal: true,
  28. // Show the dashed lines for guiding
  29. guides: true,
  30. // Show the center indicator for guiding
  31. center: true,
  32. // Show the white modal to highlight the crop box
  33. highlight: true,
  34. // Show the grid background
  35. background: true,
  36. // Enable to crop the image automatically when initialize
  37. autoCrop: true,
  38. // Define the percentage of automatic cropping area when initializes
  39. autoCropArea: 0.8,
  40. // Enable to move the image
  41. movable: true,
  42. // Enable to rotate the image
  43. rotatable: true,
  44. // Enable to scale the image
  45. scalable: true,
  46. // Enable to zoom the image
  47. zoomable: true,
  48. // Enable to zoom the image by dragging touch
  49. zoomOnTouch: true,
  50. // Enable to zoom the image by wheeling mouse
  51. zoomOnWheel: true,
  52. // Define zoom ratio when zoom the image by wheeling mouse
  53. wheelZoomRatio: 0.1,
  54. // Enable to move the crop box
  55. cropBoxMovable: true,
  56. // Enable to resize the crop box
  57. cropBoxResizable: true,
  58. // Toggle drag mode between "crop" and "move" when click twice on the cropper
  59. toggleDragModeOnDblclick: true,
  60. // Size limitation
  61. minCanvasWidth: 0,
  62. minCanvasHeight: 0,
  63. minCropBoxWidth: 0,
  64. minCropBoxHeight: 0,
  65. minContainerWidth: 200,
  66. minContainerHeight: 100,
  67. // Shortcuts of events
  68. ready: null,
  69. cropstart: null,
  70. cropmove: null,
  71. cropend: null,
  72. crop: null,
  73. zoom: null
  74. };

main.js 代码如下:

  1. $(function () {
  2. 'use strict';//表示强规则
  3. var console = window.console || { log: function () {} };
  4. var URL = window.URL || window.webkitURL;
  5. var $image = $('#image');
  6. var $download = $('#download');
  7. //获取图片截取的位置
  8. var $dataX = $('#dataX');
  9. var $dataY = $('#dataY');
  10. var $dataHeight = $('#dataHeight');
  11. var $dataWidth = $('#dataWidth');
  12. var $dataRotate = $('#dataRotate');
  13. var $dataScaleX = $('#dataScaleX');
  14. var $dataScaleY = $('#dataScaleY');
  15. var options = {
  16. aspectRatio: 1 / 1, //裁剪框比例1:1
  17. preview: '.img-preview',
  18. crop: function (e) {
  19. $dataX.val(Math.round(e.x));
  20. $dataY.val(Math.round(e.y));
  21. $dataHeight.val(Math.round(e.height));
  22. $dataWidth.val(Math.round(e.width));
  23. $dataRotate.val(e.rotate);
  24. $dataScaleX.val(e.scaleX);
  25. $dataScaleY.val(e.scaleY);
  26. }
  27. };
  28. var originalImageURL = $image.attr('src');
  29. var uploadedImageURL;
  30. // Tooltip
  31. $('[data-toggle="tooltip"]').tooltip();
  32. // Cropper
  33. $image.on({
  34. ready: function (e) {
  35. console.log(e.type);
  36. },
  37. cropstart: function (e) {
  38. console.log(e.type, e.action);
  39. },
  40. cropmove: function (e) {
  41. console.log(e.type, e.action);
  42. },
  43. cropend: function (e) {
  44. console.log(e.type, e.action);
  45. },
  46. crop: function (e) {
  47. console.log(e.type, e.x, e.y, e.width, e.height, e.rotate, e.scaleX, e.scaleY);
  48. },
  49. zoom: function (e) {
  50. console.log(e.type, e.ratio);
  51. }
  52. }).cropper(options);
  53. // Buttons
  54. if (!$.isFunction(document.createElement('canvas').getContext)) {
  55. $('button[data-method="getCroppedCanvas"]').prop('disabled', true);
  56. }
  57. if (typeof document.createElement('cropper').style.transition === 'undefined') {
  58. $('button[data-method="rotate"]').prop('disabled', true);
  59. $('button[data-method="scale"]').prop('disabled', true);
  60. }
  61. // Download
  62. if (typeof $download[0].download === 'undefined') {
  63. $download.addClass('disabled');
  64. }
  65. // Options
  66. $('.docs-toggles').on('change', 'input', function () {
  67. var $this = $(this);
  68. var name = $this.attr('name');
  69. var type = $this.prop('type');
  70. var cropBoxData;
  71. var canvasData;
  72. if (!$image.data('cropper')) {
  73. return;
  74. }
  75. if (type === 'checkbox') {
  76. options[name] = $this.prop('checked');
  77. cropBoxData = $image.cropper('getCropBoxData');
  78. canvasData = $image.cropper('getCanvasData');
  79. options.ready = function () {
  80. $image.cropper('setCropBoxData', cropBoxData);
  81. $image.cropper('setCanvasData', canvasData);
  82. };
  83. } else if (type === 'radio') {
  84. options[name] = $this.val();
  85. }
  86. $image.cropper('destroy').cropper(options);
  87. });
  88. // Methods
  89. // 点击开始计算图片位置,获取位置
  90. $('.docs-buttons').on('click', '[data-method]', function () {
  91. var $this = $(this);
  92. var data = $this.data();
  93. var $target;
  94. var result;
  95. if ($this.prop('disabled') || $this.hasClass('disabled')) {
  96. return;
  97. }
  98. if ($image.data('cropper') && data.method) {
  99. data = $.extend({}, data); // Clone a new one
  100. if (typeof data.target !== 'undefined') {
  101. $target = $(data.target);
  102. if (typeof data.option === 'undefined') {
  103. try {
  104. data.option = JSON.parse($target.val());
  105. } catch (e) {
  106. console.log(e.message);
  107. }
  108. }
  109. }
  110. if (data.method === 'rotate') {
  111. $image.cropper('clear');
  112. }
  113. result = $image.cropper(data.method, data.option, data.secondOption);
  114. if (data.method === 'rotate') {
  115. $image.cropper('crop');
  116. }
  117. switch (data.method) {
  118. case 'scaleX':
  119. case 'scaleY':
  120. $(this).data('option', -data.option);
  121. break;
  122. case 'getCroppedCanvas':
  123. //上传头像
  124. if (result) {
  125. var imgBase=result.toDataURL('image/jpeg');
  126. var data={imgBase:imgBase};
  127. $.post('/docs/upload.php',data,function(ret){
  128. if(ret=='true'){
  129. alert('上传成功');
  130. }else{
  131. alert('上传失败');
  132. }
  133. },'text');
  134. }
  135. break;
  136. case 'destroy':
  137. if (uploadedImageURL) {
  138. URL.revokeObjectURL(uploadedImageURL);
  139. uploadedImageURL = '';
  140. $image.attr('src', originalImageURL);
  141. }
  142. break;
  143. }
  144. if ($.isPlainObject(result) && $target) {
  145. try {
  146. $target.val(JSON.stringify(result));
  147. } catch (e) {
  148. console.log(e.message);
  149. }
  150. }
  151. }
  152. });
  153. // Keyboard
  154. $(document.body).on('keydown', function (e) {
  155. if (!$image.data('cropper') || this.scrollTop > 300) {
  156. return;
  157. }
  158. switch (e.which) {
  159. case 37:
  160. e.preventDefault();
  161. $image.cropper('move', -1, 0);
  162. break;
  163. case 38:
  164. e.preventDefault();
  165. $image.cropper('move', 0, -1);
  166. break;
  167. case 39:
  168. e.preventDefault();
  169. $image.cropper('move', 1, 0);
  170. break;
  171. case 40:
  172. e.preventDefault();
  173. $image.cropper('move', 0, 1);
  174. break;
  175. }
  176. });
  177. // Import image
  178. var $inputImage = $('#inputImage');
  179. if (URL) {
  180. $inputImage.change(function () {
  181. var files = this.files;
  182. var file;
  183. if (!$image.data('cropper')) {
  184. return;
  185. }
  186. if (files && files.length) {
  187. file = files[0];
  188. if (/^image\/\w+$/.test(file.type)) {
  189. if (uploadedImageURL) {
  190. URL.revokeObjectURL(uploadedImageURL);
  191. }
  192. uploadedImageURL = URL.createObjectURL(file);
  193. $image.cropper('destroy').attr('src', uploadedImageURL).cropper(options);
  194. $inputImage.val('');
  195. } else {
  196. window.alert('Please choose an image file.');
  197. }
  198. }
  199. });
  200. } else {
  201. $inputImage.prop('disabled', true).parent().addClass('disabled');
  202. }
  203. });

使用canvas生成的截图转换生成base64代码。
后台处理base64代码片段(PHP服务端)。

upload.php代码如下:

  1. <?php
  2. error_reporting(0);//禁用错误报告
  3. if (IS_POST) {
  4. header('Content-type:text/html;charset=utf-8');
  5. $base64_image_content = $_POST['imgBase'];
  6. //将base64编码转换为图片保存
  7. if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)) {
  8. $type = $result[2];
  9. $new_file = "./uploads/";
  10. if (!file_exists($new_file)) {
  11. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  12. mkdir($new_file, 0700);
  13. }
  14. $img=time() . ".{$type}";
  15. $new_file = $new_file . $img;
  16. //将图片保存到指定的位置
  17. if (file_put_contents($new_file, base64_decode(str_replace($result[1], '', $base64_image_content)))) {
  18. echo 'true';
  19. }else{
  20. echo 'false';
  21. }
  22. }else{
  23. echo 'false';
  24. }
  25. }
  26. ?>

实现效果:

选择要截取的图片位置,按“上传头像”按钮,截取的图片就上传并保存到服务器本站点目录的uploads文件夹中。



评论 5

发表评论

Top