基于cropper图片裁剪,兼容PC端与移动端

所需的资源文件

<link rel="stylesheet" href="https://cdn.bootcss.com/cropper/4.0.0-beta/cropper.css">
<script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script>
<script src="https://cdn.bootcss.com/cropper/4.0.0-beta/cropper.js"></script> 

html代码

<body style="background: #eee">
    <button id="replaceImg" class="l-btn">更换图片</button>
    <div style="width: 320px;height: 320px;border: solid 1px #555;padding: 5px;margin-top: 10px">
        <img id="finalImg" src="" width="100%">
    </div>

    <!--图片裁剪框 start-->
    <div style="display: none" class="tailoring-container">
        <div class="black-cloth" onclick="closeTailor(this)"></div>
        <div class="tailoring-content">
                <div class="tailoring-content-one">
                    <label title="上传图片" for="chooseImg" class="l-btn choose-btn">
                        <input type="file" accept="image/jpg,image/jpeg,image/png" name="file" id="chooseImg" class="hidden" onchange="selectImg(this)">
                        选择图片
                    </label>
                    <div class="close-tailoring"  onclick="closeTailor(this)">×</div>
                </div>
                <div class="tailoring-content-two">
                    <div class="tailoring-box-parcel">
                        <img id="tailoringImg">
                    </div>
                    <div class="preview-box-parcel">
                        <p>图片预览:</p>
                        <div class="square previewImg"></div>
                    </div>
                </div>
                <div class="tailoring-content-three">
                    <button class="l-btn cropper-reset-btn">复位</button>
                    <button class="l-btn cropper-rotate-btn">旋转</button>
                    <button class="l-btn cropper-scaleX-btn">换向</button>
                    <button class="l-btn sureCut" id="sureCut">确定</button>
                </div>
            </div>
    </div>
    <!--图片裁剪框 end-->
</body>

css代码

        *{
            margin: 0;padding: 0;
        }
        .l-btn{
            display: inline-block;
            outline: none;
            resize: none;
            border: none;
            padding:5px 10px;
            background: #8C85E6;
            color: #fff;
            border:solid 1px #8C85E6;
            border-radius: 3px;
            font-size: 14px;
        }
        .l-btn:hover{
            background: #8078e3;
            animation: anniu 1s infinite;
        }
        .l-btn:active{
            box-shadow: 0 2px 3px rgba(0,0,0,.2) inset;
        }
        .hidden{
            display: none;
        }
        .tailoring-container, .tailoring-container div, .tailoring-container p{
            margin: 0;padding: 0;
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
        }
        .tailoring-container{
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 1000;
            top: 0;
            left: 0;
        }
        .tailoring-container .black-cloth{
            position: fixed;
            width: 100%;
            height: 100%;
            background: #111;
            opacity: .9;
            z-index: 1001;
        }
        .tailoring-container .tailoring-content{
            position: absolute;
            width: 768px;
            height: 560px;
            background: #fff;
            z-index: 1002;
            left: 0;
            top: 0;
            border-radius: 10px;
            box-shadow: 0 0 10px #000;
            padding: 10px;
        }

        .tailoring-content-one{
            height: 40px;
            width: 100%;
            border-bottom: 1px solid #DDD ;
        }
        .tailoring-content .choose-btn{
            float: left;
        }
        .tailoring-content .close-tailoring{
            display: inline-block;
            height: 30px;
            width: 30px;
            border-radius: 100%;
            background: #eee;
            color: #fff;
            font-size: 22px;
            text-align: center;
            line-height: 30px;
            float: right;
            cursor: pointer;
        }
        .tailoring-content .close-tailoring:hover{
            background: #ccc;
        }

        .tailoring-content .tailoring-content-two{
            width: 100%;
            height: 460px;
            position: relative;
            padding: 5px 0;
        }
        .tailoring-content .tailoring-box-parcel{
            width: 520px;
            height: 450px;
            position: absolute;
            left: 0;
            border: solid 1px #ddd;
        }
        .tailoring-content .preview-box-parcel{
            display: inline-block;
            width: 228px;
            height: 450px;
            position: absolute;
            right: 0;
            padding: 4px 14px;
        }
        .preview-box-parcel p{
            color: #555;
        }
        .previewImg{
            width: 200px;
            height: 200px;
            overflow: hidden;
        }
        .preview-box-parcel .square{
            margin-top: 10px;
            border: solid 1px #ddd;
        }
        .preview-box-parcel .circular{
            border-radius: 100%;
            margin-top: 10px;
            border: solid 1px #ddd;
        }

        .tailoring-content .tailoring-content-three{
            width: 100%;
            height: 40px;
            border-top: 1px solid #DDD ;
            padding-top: 10px;
        }
        .sureCut{
            float: right;
        }

        @media all and (max-width: 768px) {
            .tailoring-container .tailoring-content{
                width: 100%;
                min-width: 320px;
                height: 460px;
            }
            .tailoring-content .tailoring-content-two{
                height: 360px;
            }
            .tailoring-content .tailoring-box-parcel{
                height: 350px;
            }
            .tailoring-container .tailoring-box-parcel{
                width: 100%;
            }
            .tailoring-container .preview-box-parcel{
                display: none;
            }

        }

JS代码

//弹出框水平垂直居中
    (window.onresize = function () {
        var win_height = $(window).height();
        var win_width = $(window).width();
        if (win_width <= 768){
            $(".tailoring-content").css({
                "top": (win_height - $(".tailoring-content").outerHeight())/2,
                "left": 0
            });
        }else{
            $(".tailoring-content").css({
                "top": (win_height - $(".tailoring-content").outerHeight())/2,
                "left": (win_width - $(".tailoring-content").outerWidth())/2
            });
        }
    })();

    //弹出图片裁剪框
    $("#replaceImg").on("click",function () {
        $(".tailoring-container").toggle();
    });
    //图像上传
    function selectImg(file) {
        if (!file.files || !file.files[0]){
            return;
        }
        var reader = new FileReader();
        reader.onload = function (evt) {
            var replaceSrc = evt.target.result;
            //更换cropper的图片
            $(‘#tailoringImg‘).cropper(‘replace‘, replaceSrc,false);//默认false,适应高度,不失真
        }
        reader.readAsDataURL(file.files[0]);
    }
    //cropper图片裁剪
    $(‘#tailoringImg‘).cropper({
        aspectRatio: 3/1,//默认比例
        preview: ‘.previewImg‘,//预览视图
        guides: false,  //裁剪框的虚线(九宫格)
        autoCropArea: 1,  //0-1之间的数值,定义自动剪裁区域的大小,默认0.8
        movable: false, //是否允许移动图片
        dragCrop: true,  //是否允许移除当前的剪裁框,并通过拖动来新建一个剪裁框区域
        movable: true,  //是否允许移动剪裁框
        resizable: true,  //是否允许改变裁剪框的大小
        zoomable: false,  //是否允许缩放图片大小
        mouseWheelZoom: false,  //是否允许通过鼠标滚轮来缩放图片
        touchDragZoom: true,  //是否允许通过触摸移动来缩放图片
        rotatable: true,  //是否允许旋转图片
        crop: function(e) {
            // 输出结果数据裁剪图像。
        }
    });
    //旋转
    $(".cropper-rotate-btn").on("click",function () {
        $(‘#tailoringImg‘).cropper("rotate", 45);
    });
    //复位
    $(".cropper-reset-btn").on("click",function () {
        $(‘#tailoringImg‘).cropper("reset");
    });
    //换向
    var flagX = true;
    $(".cropper-scaleX-btn").on("click",function () {
        if(flagX){
            $(‘#tailoringImg‘).cropper("scaleX", -1);
            flagX = false;
        }else{
            $(‘#tailoringImg‘).cropper("scaleX", 1);
            flagX = true;
        }
        flagX != flagX;
    });

    //裁剪后的处理
    $("#sureCut").on("click",function () {
        if ($("#tailoringImg").attr("src") == null ){
            return false;
        }else{
            var cas = $(‘#tailoringImg‘).cropper(‘getCroppedCanvas‘);//获取被裁剪后的canvas
            var base64url = cas.toDataURL(‘image/png‘); //转换为base64地址形式
            $("#finalImg").prop("src",base64url);//显示为图片的形式

            //关闭裁剪框
            closeTailor();
        }
    });
    //关闭裁剪框
    function closeTailor() {
        $(".tailoring-container").toggle();
    }

  

原文地址:https://www.cnblogs.com/qiuchuanji/p/10361159.html

时间: 2024-10-15 11:59:31

基于cropper图片裁剪,兼容PC端与移动端的相关文章

cropper.js实现图片裁剪预览并转换为base64发送至服务端。

一 .准备工作 1.首先需要先下载cropper,常规使用npm,进入项目路径后执行以下命令: npm install cropper 2. cropper基于jquery,在此不要忘记引入jq,同时记得引入cropper.css 3. 此处后端使用的nodejs,不过不懂node的影响也不大. 二 . 图片裁剪并预览 1.首先利用cropper完成图片裁剪并预览: <input type="file" name="" id="imgBtn"

移动端图片裁剪上传—jQuery.cropper.js

jQuery.cropper.js是一款使用简单且功能强大的图片剪裁jQuery插件.该图片剪裁插件支持图片放大缩小,支持图片旋转,支持触摸屏设备,支持canvas,并且支持跨浏览器使用. 一.移动端获取本地相册兼容 安卓:<input type="file" accept="image/*" capture="camera" > ios:<input type="file" accept="ima

基于cropper和sweetalert的简单图片/头像裁剪上传

基本功能 前端基本样式: 进行图片裁剪及上传: 点击上传后,js会将截取到的数据转为图片数据利用ajax发送给后台进行存储.存储成功后,刷新前端页面,头像改变. 上传成功后:自动刷新网页,更改头像 基本工具 cropper是一个功能强大的jq插件,在指定图片img上添加裁剪框,并根据指定事件对图片按照裁剪框的大小进行裁剪. crepper还可以对定义图片翻转.放大.移动以及输出裁剪框位置的很多功能,由于此处只是用于头像上传,所以只使用了基本功能. cropper使用时需要用到jq2.0以上,所以

PC端、移动端的页面适配及兼容处理

一.关于移动端兼容性 目前针对跨终端的方案,主要分为两大阵营:一套资源Vs两套资源. 第一种是通过响应式或页面终端判断去实现一套资源适配所有终端: 第二种是通过终端判断分别调取两套资源以适配所有终端. 这两种思路我们并不能斩钉截铁的说哪一个更优选,正所谓”合适的才是最好的”. 思路一:通过响应式或页面终端判断去实现一套资源适配所有终端 优势:只需维护一套资源,维护成本较低. 劣势:需加载适配各个终端的各个资源,在不同终端通过响应式布局实现不同展现,部分交互效果需要在页面中做终端判断,代价较大,若

cropper.js图片裁剪

最近做电子名片的项目,可是个人照片展示上出现了 用户上传的图片尺寸严重失调,所以要求进行图片裁剪,再此我对图片裁剪进行调研 还不太成熟 以后再改 这个实现的原理是 前台获取到 坐标 图片的尺寸 原图文件 传给后台进行裁剪 这个是我在网上找的一个插件 cropper功能很强大 这里是官方文档 首先使用cropper必须引入对应得css和js,还有jquery <script src="jquery.js"></script> <link href="

基于jQuery移动设备图片裁剪代码

一款基于jQuery移动设备图片裁剪代码.这是一款支持移动设备触摸手势的jQuery图片裁剪插件jquery.photoClip.效果图如下: 在线预览   源码下载 实现的代码. html代码: <article class="zzsc-container"> <div id="clipArea"></div> <input type="file" id="file"> <

ASP.NET MVC在服务端把异步上传的图片裁剪成不同尺寸分别保存,并设置上传目录的尺寸限制

我曾经试过使用JSAjaxFileUploader插件来把文件.照片以异步的方式上传,就像"MVC文件图片ajax上传轻量级解决方案,使用客户端JSAjaxFileUploader插件01-单文件上传"中说的,这种方法足够轻.足够好.但今天,要在前面的基础上再增加2个需求: 1.异步判断上传的图片是否超过最大限制2.把上传的图片裁剪成大中小3张图片,分别保存,删除的时候一块被删除 上传图片如果超出最大尺寸限制,终止上传,并报错误信息. 前台上传图片,显示缩略图. 在项目根目录下的指定文

基于jQuery功能非常强大的图片裁剪插件

今天我们要来介绍一款基于jQuery功能非常强大的图片裁剪插件,这款jQuery图片裁剪插件可以选择裁剪框的尺寸比例,可以设置高宽尺寸,同时可以设置图片翻转角度,当然也支持图片的缩放,裁剪框也可以用鼠标拖动.效果图如下: 在线预览   源码下载 来看看实现的代码,这里我们主要来看JavaScript代码 获取图片的Canvas画布: function getSourceCanvas(image, data) { var canvas = $('<canvas>')[0], context =

cropper.js裁剪图片的使用

这两天难得有时间可以整理一下最近学习的东西,这两天项目中用到了头像上传裁剪的功能,这里只介绍头像的裁剪吧. 单独实现图片剪裁的功能还是挺容易的,入门级别的.看一遍官方给的文档,基本上就明白了.大家如果不想看英文版的官网介绍,可以看这篇博客,讲的特别好. 官网地址:http://fengyuanchen.github.io/cropper/ 附上网址:https://blog.csdn.net/weixin_38023551/article/details/78792400 这篇文章讲的很好. 我