getHeight: function(callback) {
    let img = new Image();
    img.onload = function() {
      callback(img.height);
    };