`
pengsky2002
  • 浏览: 23200 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

JQuery-图片剪裁

阅读更多

imageselect.jsp

 

<%@ page contentType="text/html; charset=UTF-8" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<base href="http://localhost:8080/dojodemo/" />
		<title>剪裁</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<style type="text/css">
				em {background: url(http://static.l99.com/skin/default/images/miniblog/hover.png) no-repeat;width:180px;height:60px;position:absolute;top:-85px;left:-85px;text-align:center;padding: 10px 12px 10px;font-style:normal;z-index:2;display:none;}
				em button {background-color:#CCCCCC;border:1px solid #999999;color:#000000;cursor:pointer;font-size:12px;height:20px;width:50px;}
				.adelete{position:relative;}
				div.imgcutDiv {margin: 30px auto;width: 320px;text-align: center;}
				div.imgcutDiv a {margin:0 10px;float:left;}				
		</style>
	</head>

	<body>
		<div class="tagBt_down">
			<div class="con_title">
						剪裁头像
			</div>
			<div class="con_fill">
				<div class="container">
							<p>
								<img id="ferret" src="http://blog.btbbt.com/attachments/2008/07/1510243_200807062233495.jpg"
									alt="loading IMG ......"
									title="image select"
									style="float: left; margin-right: 10px;"/>
							</p>
				</div>

				<div class="clear"></div>
		        <div class="imgcutDiv">
						<form action="cutImg.action" method="post" id="cutImgForm">
							<input type="hidden" id="cutImageW"  name="imgWidth" />
							<input type="hidden" id="cutImageH"  name="imgHeight" />
							<input type="hidden" id="cutImageX"  name="imgTop" />
							<input type="hidden" id="cutImageY"  name="imgLeft" />																						
							<input type="hidden" value="avatars.id" name="avatarsId" />								
							<a id="img_cut_fb" href="javascript:void(0);" class="bt_22">确认剪裁</a>
							<a href="javascript:history.go(-1);" class="bt_2">取消剪裁</a>
						</form>
				</div>
			</div>
		</div>
			<script type="text/javascript" src="js/jquery-1.2.6.pack.js?ver=20080814"></script>
			<script type="text/javascript" src="js/jquery.imgareaselect-0.5.js?ver=20080913"></script>
			<script type="text/javascript">
				var imageW = 537;
				var imageH = 681;
				function preview(img, selection){ 
					showCut(selection.width,selection.height,selection.x1,selection.y1);
				}
				
				function showCut(w,h,x,y){
					var scaleX = 200 / w;
					var scaleY = 222 / h;
					$('#ferret + div > img').css({ width: Math.round(scaleX * imageW) + 'px', height: Math.round(scaleY * imageH) + 'px', marginLeft: '-' + Math.round(scaleX * x) + 'px', marginTop: '-' + Math.round(scaleY * y) + 'px' }); 				
					$('input#cutImageW').val(w);
					$('input#cutImageH').val(h);
					$('input#cutImageX').val(x);
					$('input#cutImageY').val(y);
				}
				
				$(document).ready(function () {
					$('<div><img src="http://blog.btbbt.com/attachments/2008/07/1510243_200807062233495.jpg" style="position: relative;" /></div>')
					.css({ float: 'left', position: 'relative', overflow: 'hidden', width: '200px', height: '222px' })
					.insertAfter($('#ferret'));
					
					imageW = $('#ferret + div > img').width();
					imageH = $('#ferret + div > img').height();
					
					$("form > a#img_cut_fb").click(function(){
	                    if(confirm('确任剪切吗?')){
	                     	alert("width: " + $('input#cutImageW').val() + "height: " + $('input#cutImageH').val() + "left: " + $('input#cutImageX').val() + "top: " + $('input#cutImageY').val());
	                    }
					});
				}); 
				 
				$(window).load(function () {
				   $('img#ferret').imgAreaSelect({ selectionOpacity: 0,minWidth:90,minHeight:100,outerOpacity:'0.5', selectionColor: 'blue', aspectRatio:'9:10',x1: 10, y1: 10, x2: 100, y2: 110,onSelectChange: preview });
				   showCut(90,100,10,10);
				 });
			</script>
	</body>
</html>

 

 

jquery.imgareaselect-0.5.js

/*
 * imgAreaSelect jQuery plugin
 * version 0.5
 *
 * Copyright (c) 2008 Michal Wojciechowski (odyniec.net)
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt) 
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://odyniec.net/projects/imgareaselect/
 *
 */

jQuery.imgAreaSelect = function (img, options) {
    var $area = jQuery('<div></div>'),
        $border1 = jQuery('<div></div>'),
        $border2 = jQuery('<div></div>'),
        $outLeft = jQuery('<div></div>'),
        $outTop = jQuery('<div></div>'),
        $outRight = jQuery('<div></div>'),
        $outBottom = jQuery('<div></div>'),
        left, top, imgOfs, imgWidth, imgHeight, parent, parOfs, adjusted,
        zIndex = 0, fixed, $p,
        startX, startY, moveX, moveY,
        resizeMargin = 10, resize = [ ], V = 0, H = 1,
        d, aspectRatio,
        x1, x2, y1, y2, x, y,
        selection = { x1: 0, y1: 0, x2: 0, y2: 0, width: 0, height: 0 };

    var $a = $area.add($border1).add($border2);
    var $o = $outLeft.add($outTop).add($outRight).add($outBottom);
    
    function viewX(x)
    {
        return x + imgOfs.left + parent.scrollLeft - parOfs.left;
    }

    function viewY(y)
    {
        return y + imgOfs.top + parent.scrollTop - parOfs.top;
    }

    function selX(x)
    {
        return x - imgOfs.left - parent.scrollLeft + parOfs.left;
    }
    
    function selY(y)
    {
        return y - imgOfs.top - parent.scrollTop + parOfs.top;
    }
    
    function evX(event)
    {
        return event.pageX + parent.scrollLeft - parOfs.left; 
    }

    function evY(event)
    {
        return event.pageY + parent.scrollTop - parOfs.top; 
    }
    
    function adjust()
    {
        imgOfs = jQuery(img).offset();
        imgWidth = jQuery(img).width();
        imgHeight = jQuery(img).height(); 
        
        parOfs = jQuery(parent).is('body') ? { left: 0, top: 0 } :
            jQuery(parent).offset();
            
        left = viewX(0);
        top = viewY(0);
    }

    function update()
    {
        $a.css({
            left: viewX(selection.x1) + 'px',
            top: viewY(selection.y1) + 'px',
            width: Math.max(selection.width - options.borderWidth * 2, 0) + 'px',
            height: Math.max(selection.height - options.borderWidth * 2, 0) + 'px'
        });
        $outLeft.css({ left: left + 'px', top: top + 'px',
            width: selection.x1 + 'px', height: imgHeight + 'px' });
        $outTop.css({ left: left + selection.x1 + 'px', top: top + 'px',
            width: selection.width + 'px', height: selection.y1 + 'px' });
        $outRight.css({ left: left + selection.x2 + 'px', top: top + 'px',
            width: imgWidth - selection.x2 + 'px', height: imgHeight + 'px' });
        $outBottom.css({ left: left + selection.x1 + 'px', top: top + selection.y2 + 'px',
            width: selection.width + 'px', height: imgHeight - selection.y2 + 'px' });
    }

    function areaMouseMove(event)
    {
        if (!adjusted) {
            adjust();
            adjusted = true;
            
            $a.one('mouseout', function () {
                adjusted = false;
            });
        }
    
        x = selX(evX(event)) - selection.x1;
        y = selY(evY(event)) - selection.y1;
        
        resize = [ ];

        if (options.resizable) {
            if (y <= resizeMargin)
                resize[V] = 'n';
            else if (y >= selection.height - resizeMargin)
                resize[V] = 's';
            if (x <= resizeMargin)
                resize[H] = 'w';
            else if (x >= selection.width - resizeMargin)
                resize[H] = 'e';
        }

        $border2.css('cursor', resize.length ? resize.join('') + '-resize' :
            options.movable ? 'move' : '');
    }

    function areaMouseDown(event)
    {
        if (event.which != 1) return false;
        
        adjust();

        if (options.resizable && resize.length > 0) {
            jQuery('body').css('cursor', resize.join('') + '-resize');

            x1 = viewX(resize[H] == 'w' ? selection.x2 : selection.x1);
            y1 = viewY(resize[V] == 'n' ? selection.y2 : selection.y1);

            jQuery(document).mousemove(selectingMouseMove);
            $border2.unbind('mousemove', areaMouseMove);

            jQuery(document).one('mouseup', function () {
                resize = [ ];

                jQuery('body').css('cursor', '');

                if (options.autoHide)
                    $a.add($o).hide();

                options.onSelectEnd(img, selection);

                jQuery(document).unbind('mousemove', selectingMouseMove);
                $border2.mousemove(areaMouseMove);
            });
        }
        else if (options.movable) {
            moveX = selection.x1 + left;
            moveY = selection.y1 + top;
            startX = evX(event);
            startY = evY(event);

            jQuery(document)
                .mousemove(movingMouseMove)
                .one('mouseup', function () {
                    options.onSelectEnd(img, selection);

                    jQuery(document).unbind('mousemove', movingMouseMove);
                });
        }
        else
            jQuery(img).mousedown(event);

        return false;
    }

    function aspectRatioXY()
    {
        x2 = Math.max(left, Math.min(left + imgWidth,
            x1 + Math.abs(y2 - y1) * aspectRatio * (x2 > x1 ? 1 : -1)));
        y2 = Math.round(Math.max(top, Math.min(top + imgHeight,
            y1 + Math.abs(x2 - x1) / aspectRatio * (y2 > y1 ? 1 : -1))));
        x2 = Math.round(x2);
    }

    function aspectRatioYX()
    {
        y2 = Math.max(top, Math.min(top + imgHeight,
            y1 + Math.abs(x2 - x1) / aspectRatio * (y2 > y1 ? 1 : -1)));
        x2 = Math.round(Math.max(left, Math.min(left + imgWidth,
            x1 + Math.abs(y2 - y1) * aspectRatio * (x2 > x1 ? 1 : -1))));
        y2 = Math.round(y2);
    }

    function selectingMouseMove(event)
    {
        x2 = !resize.length || resize[H] || aspectRatio ? evX(event) : viewX(selection.x2);
        y2 = !resize.length || resize[V] || aspectRatio ? evY(event) : viewY(selection.y2);

        if (options.minWidth && Math.abs(x2 - x1) < options.minWidth) {
            x2 = x1 - options.minWidth * (x2 < x1 ? 1 : -1);

            if (x2 < left)
                x1 = left + options.minWidth;
            else if (x2 > left + imgWidth)
                x1 = left + imgWidth - options.minWidth;
        }

        if (options.minHeight && Math.abs(y2 - y1) < options.minHeight) {
            y2 = y1 - options.minHeight * (y2 < y1 ? 1 : -1);

            if (y2 < top)
                y1 = top + options.minHeight;
            else if (y2 > top + imgHeight)
                y1 = top + imgHeight - options.minHeight;
        }

        x2 = Math.max(left, Math.min(x2, left + imgWidth));
        y2 = Math.max(top, Math.min(y2, top + imgHeight));

        if (aspectRatio)
            if (Math.abs(x2 - x1) / aspectRatio > Math.abs(y2 - y1))
                aspectRatioYX();
            else
                aspectRatioXY();

        if (options.maxWidth && Math.abs(x2 - x1) > options.maxWidth) {
            x2 = x1 - options.maxWidth * (x2 < x1 ? 1 : -1);
            if (aspectRatio) aspectRatioYX();
        }

        if (options.maxHeight && Math.abs(y2 - y1) > options.maxHeight) {
            y2 = y1 - options.maxHeight * (y2 < y1 ? 1 : -1);
            if (aspectRatio) aspectRatioXY();
        }
        
        selection.x1 = selX(Math.min(x1, x2));
        selection.x2 = selX(Math.max(x1, x2));
        selection.y1 = selY(Math.min(y1, y2));
        selection.y2 = selY(Math.max(y1, y2));
        selection.width = Math.abs(x2 - x1);
        selection.height = Math.abs(y2 - y1);
                
        update();

        options.onSelectChange(img, selection);

        return false;        
    }

    function movingMouseMove(event)
    {
        x1 = Math.max(left, Math.min(moveX + evX(event) - startX,
            left + imgWidth - selection.width));
        y1 = Math.max(top, Math.min(moveY + evY(event) - startY,
            top + imgHeight - selection.height));
        x2 = x1 + selection.width;
        y2 = y1 + selection.height;

        selection.x1 = selX(x1);
        selection.y1 = selY(y1);
        selection.x2 = selX(x2);
        selection.y2 = selY(y2);
        
        update();

        options.onSelectChange(img, selection);
        event.preventDefault();

        return false;
    }

    function imgMouseDown(event)
    {
        if (event.which != 1) return false;
        
        adjust();

        selection.x1 = selection.x2 = selX(startX = x1 = x2 = evX(event));
        selection.y1 = selection.y2 = selY(startY = y1 = y2 = evY(event));
        selection.width = 0;
        selection.height = 0;

        resize = [ ];

        update();
        $a.add($o).show();

        jQuery(document).mousemove(selectingMouseMove);
        $border2.unbind('mousemove', areaMouseMove);

        options.onSelectStart(img, selection);

        jQuery(document).one('mouseup', function () {
            if (options.autoHide)
                $a.add($o).hide();

            options.onSelectEnd(img, selection);

            jQuery(document).unbind('mousemove', selectingMouseMove);
            $border2.mousemove(areaMouseMove);
        });

        return false;
    }
    
    function windowResize()
    {
        adjust();
        update();
    }

    this.setOptions = function(newOptions)
    {
        options = jQuery.extend(options, newOptions);

        if (newOptions.x1 != null) {
            selection.x1 = newOptions.x1;
            selection.y1 = newOptions.y1;
            selection.x2 = newOptions.x2;
            selection.y2 = newOptions.y2;
            newOptions.show = true;
        }
            
        parent = jQuery(options.parent).get(0);
        
        adjust();
            
        $p = jQuery(img);

        while ($p.length && !$p.is('body')) {
            if (!isNaN($p.css('z-index')) && $p.css('z-index') > zIndex)
                zIndex = $p.css('z-index');
            if ($p.css('position') == 'fixed') fixed = true;

            $p = $p.parent();
        }
    
        x1 = viewX(selection.x1);
        y1 = viewY(selection.y1);
        x2 = viewX(selection.x2);
        y2 = viewY(selection.y2);
        selection.width = x2 - x1;
        selection.height = y2 - y1;
        
        update();
        
        if (newOptions.hide)
            $a.add($o).hide();
        else if (newOptions.show)
            $a.add($o).show();
            
        $o.addClass(options.classPrefix + '-outer');
        $area.addClass(options.classPrefix + '-selection');
        $border1.addClass(options.classPrefix + '-border1');
        $border2.addClass(options.classPrefix + '-border2');

        $a.css({ borderWidth: options.borderWidth + 'px' });
        $area.css({ backgroundColor: options.selectionColor, opacity: options.selectionOpacity });       
        $border1.css({ borderStyle: 'solid', borderColor: options.borderColor1 });
        $border2.css({ borderStyle: 'dashed', borderColor: options.borderColor2 });
        $o.css({ opacity: options.outerOpacity, backgroundColor: options.outerColor });

        aspectRatio = options.aspectRatio && (d = options.aspectRatio.split(/:/)) ?
            d[0] / d[1] : null;

        if (options.disable || options.enable === false) {
            $a.unbind('mousemove', areaMouseMove).unbind('mousedown', areaMouseDown);
            jQuery(img).add($o).unbind('mousedown', imgMouseDown);
            jQuery(window).unbind('resize', windowResize);
        }
        else if (options.enable || options.disable === false) {
            if (options.resizable || options.movable)
                $a.mousemove(areaMouseMove).mousedown(areaMouseDown);

            jQuery(img).add($o).mousedown(imgMouseDown);
            jQuery(window).resize(windowResize);
        }
        
        jQuery(options.parent).append($o.add($a));

        options.enable = options.disable = undefined;
    };

    if (jQuery.browser.msie)
        jQuery(img).attr('unselectable', 'on');
        
    $a.add($o).css({ display: 'none', position: fixed ? 'fixed' : 'absolute',
        overflow: 'hidden', zIndex: zIndex > 0 ? zIndex : null });
    $area.css({ borderStyle: 'solid' });

    initOptions = {
        borderColor1: '#000',
        borderColor2: '#fff',
        borderWidth: 1,
        classPrefix: 'imgareaselect',
        movable: true,
        resizable: true,
        selectionColor: '#fff',
        selectionOpacity: 0.2,
        outerColor: '#000',
        outerOpacity: 0.2,
        parent: 'body',
        onSelectStart: function () {},
        onSelectChange: function () {},
        onSelectEnd: function () {}
    };

    options = jQuery.extend(initOptions, options);
    this.setOptions(options);
};

jQuery.fn.imgAreaSelect = function (options) {
    options = options || {};

    this.each(function () {
        if (jQuery(this).data('imgAreaSelect'))
            jQuery(this).data('imgAreaSelect').setOptions(options);
        else {
            if (options.enable === undefined && options.disable === undefined)
                options.enable = true;

            jQuery(this).data('imgAreaSelect', new jQuery.imgAreaSelect(this, options));
        }
    });

    return this;
};

 

 

  • 大小: 49.4 KB
分享到:
评论

相关推荐

    jQuery-photoClip-master 图片上传剪切

    【jQuery-photoClip-master 图片上传剪切】是一个基于jQuery的图片裁剪插件,主要用于Web开发中的图片商城剪切功能。这个项目集成了JavaScript技术,提供了便捷的图片处理能力,让用户在网页上能够自由地裁剪上传的...

    jQuery图片裁剪插件jQuery-photoClip

    **jQuery图片裁剪插件jQuery-photoClip** jQuery-photoClip是一款基于JavaScript库jQuery的图片裁剪工具,它允许用户在网页上交互式地裁剪图片,适用于各种需要上传或编辑图片的应用场景,如在线头像设置、照片编辑...

    jquery-Jcrop实现图片裁剪截图上传和保存

    1. **jQuery插件**:jQuery Jcrop是一个JavaScript插件,它扩展了jQuery的功能,为图片裁剪提供了一套完整的解决方案。 2. **图像选择**:Jcrop允许用户通过鼠标拖动来选择图片的一部分,创建一个选区,这被称为...

    Jquery-Cropper实现文件下载

    jQuery-Cropper 是一个基于 jQuery 的图像裁剪插件,它提供了丰富的功能,允许用户在网页上进行自定义的图片剪切操作。这款插件由 Feng Yuan Chen 开发,其官方网站为 &lt;https://fengyuanchen.github.io/cropper&gt; ,...

    jquery-cropper标注插件.zip

    jQuery Cropper是一款强大的图片裁剪与标注插件,它结合了jQuery库和coorp.js模块,使得在网页上实现图片标注和获取标注信息变得简单易行。本文将深入探讨这个插件的使用方法、功能特性以及如何获取标注的区域坐标和...

    基于jquery的图片裁剪插件

    【jQuery图片裁剪插件详解】 在Web开发中,用户经常需要上传并编辑图片,例如在个人资料设置、产品发布或社交媒体应用中。基于jQuery的图片裁剪插件为此提供了便利,它允许用户在浏览器中预览并裁剪图片,然后以所...

    jQuery-imgFileupload.rar

    5. **功能扩展**:除了基本的上传和预览,jQuery-imgFileupload还支持自定义上传参数、图片裁剪、文件类型验证等功能。你可以根据项目需求,通过配置项或扩展插件功能来实现更多定制化操作。 总结,jQuery-...

    jQuery-Plugin-for-Client-Side-Image-Resizing-canvasResize

    - 图片裁剪工具:配合其他工具,可以实现图片的裁剪和调整,提供更丰富的用户交互体验。 - 响应式设计:根据屏幕尺寸动态调整图片大小,确保在不同设备上都能良好显示。 6. **注意事项** - 安全性:使用...

    jquery-cropper图片在线截图+图片保存服务器

    cropper是一款使用简单且功能强大的图片剪裁jQuery插件。该图片剪裁插件支持图片放大缩小,支持鼠标滚轮操作,支持图片旋转,支持触摸屏设备,支持canvas,并且支持跨浏览器使用。 附件中有核心关键代码,实例参看:...

    jquery_图片裁剪

    在IT行业中,jQuery图片裁剪是一项常见的前端技术,主要用于网页上的图像处理,让用户可以自定义裁剪区域,以便上传或编辑图片。以下是对这个主题的详细讲解。 标题"jquery_图片裁剪"指的是使用jQuery库实现的图片...

    PHP jQuery图片上传裁剪 1.2.zip

    采用PHP jQuery开发的图片上传和裁剪工具。 在使用之前,请确保以下几点要求: PHP4或更高(已经过通过PHP5测试) 安全模式必须关闭! - 一些用户报告的问题时,安全模式开启。 PHP的GD库 jQuery的版本1.2.3...

    asp.net结合jquery裁剪图片

    本教程将详细讲解如何结合ASP.NET和jQuery实现图片裁剪功能。 首先,ASP.NET是微软推出的一种用于构建Web应用程序的服务器端框架,它提供了丰富的控件和强大的数据绑定能力。而jQuery则是一个轻量级的JavaScript库...

    jQuery-photoClip手机图片裁剪.zip

    代码片段: function lazyCount() { var currentBarPie, toValue, itemsCount; ...function step(t) { ...var itemIdx = Math.round(itemsCount * (toValue / 100) * t);...document.getElementById(currentBarPie.id ...

    php+html+jquery实现图片裁剪上传

    在这个例子中,我们使用了jQuery库以及一个名为`cropper.js`的图片裁剪插件。用户选择图片后,我们可以用jQuery监听`change`事件,读取文件并显示预览。 接下来,是jQuery部分,用于处理图片裁剪和上传。在`main.js...

    Jquery-cropzoom (.net、php)

    `jQuery-cropzoom`不仅适用于上传头像、产品图片裁剪等常见场景,还可以结合其他技术,如Vue、React等现代前端框架,用于更复杂的图像处理应用场景,如在线编辑器、图像分析等。 总的来说,`jQuery-cropzoom`是一...

    jQueryphotoClip图片剪裁插件

    jQueryphotoClip图片剪裁插件是一款专为网页设计师和开发者设计的高效工具,它允许用户在网页上方便地对图片进行裁剪操作。这款插件是基于流行的JavaScript库jQuery构建的,因此它能够轻松地与现有的jQuery项目集成...

    jQuery实现的对上传图片进行裁剪插件

    这个“jQuery实现的对上传图片进行裁剪插件”就是为了满足这样的需求而设计的。下面将详细阐述这个插件的工作原理、功能特性以及使用方法。 首先,该插件基于JavaScript库jQuery构建,它允许开发者在客户端(用户的...

    jquery 图片裁剪

    - **JQuery Cropper**:这是一款基于 jQuery 的图片裁剪插件,提供了丰富的配置选项和方法,如设置裁剪框大小、旋转角度、比例等,支持触控设备,可以轻松实现图片裁剪功能。 - **jQuery Image Crop**:另一个常用...

    Jquery特效--最好的设计

    通过使用jQuery,可以实现丰富的图片展示效果,提高网站的吸引力。 ##### 1. imgAreaSelect - **简介**:用于选择图片区域的插件。 - **特点**: - 支持拖拽选择。 - 可以与图片上传插件结合使用。 ##### 2. ...

Global site tag (gtag.js) - Google Analytics