Привет. Как получить значение ширины и высоты у фото?
function preview(img, selection) {
var scaleX = 100 / (selection.width || 1);
var scaleY = 100 / (selection.height || 1);
$('#photo + div > img').css({
width: Math.round(scaleX * 300) + 'px',
height: Math.round(scaleY * 225) + 'px',
marginLeft: '-' + Math.round(scaleX * selection.x1) + 'px',
marginTop: '-' + Math.round(scaleY * selection.y1) + 'px'
});
}
Эти строчки указывают на ширину и высоту:
width: Math.round(scaleX * 300) + 'px',
height: Math.round(scaleY * 225) + 'px',
как получить у данной картинки эти параметры?