所以当我做
时,我有一张图片console.log(image);
这是控制台上显示的内容,
Object {imageFormat: "image/jpeg", imageB64: "..gibberish..."}
我希望能够提取图像的尺寸,图像的大小,以便我可以进行条件并将其发送到服务器。
我做了类似的事。
console.log(image.naturalHeight + " x " + image.naturalWidth);
但我得到的只是
undefined x undefined
请注意我也需要这个尺寸。
刚开始接受Javascript,因此我可能不知道某些条款,请与您的意见保持友好关系。
tl; dr,如何获取图像属性?