Jquery裁剪图像

时间:2012-07-21 08:26:08

标签: javascript jquery

我正在尝试使用这个http://odyniec.net/projects/imgareaselect/examples.html Jquery Cropping示例从jquery获取维度并将其发送到我的java,所以java文件为我做裁剪或者我只是在客户端这里做,但它对我来说不起作用这里是我编写的代码http://jsfiddle.net/UydpR/说实话我不知道我在做什么,或者我想如何写这个,我想如果我只是说它会给我剩下的选项...代码的任何帮助或示例都会被评估...我确实按照他们的文档但我在这方面很新

3 个答案:

答案 0 :(得分:1)

从脚本中删除以下行:

onSelectEnd: someFunction

为您准备工作代码示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" media="screen" href="css/imgareaselect-default.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="css/imgareaselect-animated.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="css/imgareaselect-deprecated.css"/>
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery.imgareaselect.min.js"></script>


</head>
<body>
<div>

<img id="imgareaselect-selection" width="400" src="http://chrisharrison.net/projects/colorflower/Flower2medium.jpg" alt="My image" name="photo" />

</div>

<div style="position: absolute; overflow: hidden; z-index: 2; ">
<div style="position: absolute; font-size: 0px; " class="imgareaselect-selection"></div>
<div style="position: absolute; font-size: 0px; " class="imgareaselect-border1"></div>
<div style="position: absolute; font-size: 0px; " class="imgareaselect-border2"></div>
<div style="position: absolute; font-size: 0px; " class="imgareaselect-border3"></div>
<div style="position: absolute; font-size: 0px; " class="imgareaselect-border4"></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
<div class="imgareaselect-handle" style="position: absolute; font-size: 0px; z-index: 1; width: 5px; height: 5px; "></div>
</div>
</body>
</html>​
<script type="text/javascript">
$(document).ready(function () {
    $('img').imgAreaSelect({
        handles: true,

    });
    $('img').imgAreaSelect({
    onSelectEnd: function (img, selection) {
        alert('width: ' + selection.width + '; height: ' + selection.height);
    }
});
$('img').imgAreaSelect({
    keys: { arrows: 15, ctrl: 5, shift: 'resize' }
});
});
</script>
<script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>

<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3683332-2");
pageTracker._initData();
pageTracker._trackPageview();
</script>

答案 1 :(得分:0)

我不确定我完全理解你的问题。你想要宽度(以像素为单位)吗?

在这种情况下,它非常简单:     var w = $('tag')。width();     var h = $('tag')。height();

现在你可以聪明地定义这些,比如....

var w = $('tag').width() / $(window).width(); //is the percentage of the width of the browser that the picture has.

然后w * .5相当直接,将浏览器的宽度减少2等。

请详细说明是否需要更多。

答案 2 :(得分:0)

您的小提琴设置不正确。你使用mootools而不是jQuery。首先,你必须改变这一点。你的代码也有很多问题,所以你必须改变它。

您可以通过在此小提琴中裁剪图像来查看版本:

http://jsfiddle.net/UydpR/2/

如果你添加一个隐藏字段的表格和下面这段代码的php文件,你可以提交选择坐标。我还没有尝试过这个,但脚本的开发人员就是这个例子。

将包含隐藏字段的表单(下面列出的名称)添加到HTML代码中。

将此添加到javascript代码:

$(document).ready(function () {
$('#ladybug').imgAreaSelect({
    onSelectEnd: function (img, selection) {
        $('input[name="x1"]').val(selection.x1);
        $('input[name="y1"]').val(selection.y1);
        $('input[name="x2"]').val(selection.x2);
        $('input[name="y2"]').val(selection.y2);            
    }
});

});

确保你制作了一个php文件。将表单数据提交到PHP文件并使用它执行您喜欢的操作。

在这里您可以找到教程:http://odyniec.net/projects/imgareaselect/examples-callback.html#submitting-selection-coordinates-demo