Есть ли способ получить ширину и высоту изображения перед его фактической вставкой в редактор?
У меня есть следующий код, но ширина и высота всегда возвращают 0
var imageElement = editor.document.createElement('img');
imageElement.setAttribute('src', imageSource);
var width = imageElement.$.width;
var height = imageElement.$.height;
if (width > 0) {
this.imageElement.setAttribute('width', width);
}
if (height > 0) {
this.imageElement.setAttribute('height', height);
}
editor.insertElement(imageElement);
Помощь будет принята с благодарностью