Well, to change it, you can just set the image width()and height():
$('#myimage').width(700);
$('#myimage').height(700);
, , , - 100x100, 200x200 .. split :
var parts = '100x100'.split('x');
var width = parseInt(parts[0], 10);
var height = parseInt(parts[1], 10);