Yes, you are correct.
Your cropping is being done on the full size 4000x4000 image so what you’re seeing is just the blue sky up in the top-left corner of the full size image.
To fix the problem, you need to crop an image the same size as the on-screen image you are having the user crop (same size as #canvasToThumb)
To get that properly sized image, create a new hidden-canvas the same size as #canvasToThumb. Then scale the full-sized image into that properly sized hidden canvas.
Then when the user hits “Crop”, you crop from the hidden-canvas, not the full sized image.
Here is code and a Fiddle: http://jsfiddle.net/m1erickson/77AHV/
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<link rel="stylesheet" type="text/css" media="all" href="jquery.Jcrop.min.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="jquery.Jcrop.min.js"></script>
<style>
body{ background-color: ivory; }
canvas{border:1px solid red;}
div img{
max-width: 400px;
max-height: 400px;
}
input {
width: 100px;
float: left;
}
</style>
<script>
$(function(){
// Create variables (in this scope) to hold the API and image size
var jcrop_api, boundx, boundy;
function updatePreview(c) { // croping image preview
if (parseInt(c.w) > 0) {
var rx = 220 / c.w, ry = 220 / c.h;
}
}
function showCoords(c) { // show all coords
$('#x').val(c.x);
$('#y').val(c.y);
$('#x2').val(c.x2);
$('#y2').val(c.y2);
$('#w').val(c.w);
$('#h').val(c.h);
}
$('.thumbnail-img').Jcrop({
onChange: updatePreview,
onSelect: showCoords,
bgFade: true,
bgOpacity: .2,
setSelect: [ 0, 0, 220, 220 ],
aspectRatio: 1
},function(){
jcrop_api = this;
});
$("#crop").on("click", function(){
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");
var getX = $('#x').val();
var getY = $('#y').val();
var getWidth = $('#w').val();
var getHeight = $('#h').val();
canvas.width=getWidth;
canvas.height=getHeight;
context.drawImage(hiddenCanvas,getX,getY,getWidth,getHeight,0,0,canvas.width,canvas.height);
});
var hiddenCanvas,newContext;
function init(){
// create a hidden canvas (hiddenCanvas) the same size as #canvasToThumb
hiddenCanvas=document.createElement("canvas");
newContext=hiddenCanvas.getContext("2d");
var imgCanvasToThumb=document.getElementById("canvasToThumb");
hiddenCanvas.width=imgCanvasToThumb.width;
hiddenCanvas.height=imgCanvasToThumb.height;
// Draw the image into hiddenCanvas
var imgFullSized=new Image();
imgFullSized.onload=function(){
newContext.drawImage(this,0,0,this.width,this.height,0,0,hiddenCanvas.width,hiddenCanvas.height);
}
imgFullSized.src="http://www.extremetech.com/wp-content/uploads/2012/12/Audi-A1.jpg";
}
init();
}); // end $(function(){});
</script>
</head>
<body>
<div>
<img id="canvasToThumb" class='thumbnail-img' src="http://www.extremetech.com/wp-content/uploads/2012/12/Audi-A1.jpg" />
</div>
<button id="crop">Crop</button>
<input type="text" id="x" name="coord_x" />
<input type="text" id="y" name="coord_y" />
<input type="text" id="x2" name="coord_x2"/>
<input type="text" id="y2" name="coord_y2"/>
<input type="text" id="w" name="size_w"/>
<input type="text" id="h" name="size_h"/>
<br/><canvas id="canvas" width="320" height="320"></canvas>
</body>
</html>