我可能非常非常愚蠢。但我不能让它为我的生活工作。我正在尝试将其设置imgWidth
为与文件的图像宽度(pic_real_width)相同的宽度。
function calculate() {
var pic_real_width, pic_real_height;
$("<img/>").attr("src", $("#pp_photo_popUp")[0].src).load(function() {
pic_real_width = this.width; // Note: $(this).width() will not
pic_real_height = this.height; // work for in memory images.
});
var imgWidth =
}
总而言之,我正在尝试制作一个函数来获取硬盘上文件的真实尺寸。