使用文件 GetThumbnail 获取原始大小的图像 javascript

Get orignal size image using filesGetThumbnail javascript

这是我的代码

  var dbx = new Dropbox.Dropbox({ accessToken: 'xxxxxxxxxxxxxxxxxxxxxxxx' });

function renderItems(items) {
  var filesContainer = document.getElementById('files');
  items.forEach(function(item) {
        dbx.filesGetThumbnail({ path: item.path_display }) // here we need to add size
    .then(function(response) {
            jQuery('#full__gallery__slider').append('<div class="item"><div class="gallery__box"><img src="'+window.URL.createObjectURL(response.fileBlob)+'" class="img-circle"></div></div>');
    })
    .catch(function(error) {
      console.log(error);
    });
  });
  }


dbx.filesListFolder({path: ''})
  .then(function(response) {
     renderItems(response.entries);
});

现在我得到像 61X57 这样的图像 问题:我只想知道如何获取原始图像

我实际上是在使用下面的代码来获取图像的大小

var img = document.getElementById('imageid');
var width = img.clientWidth;
var height = img.clientHeight;

但我不太确定保管箱 api.. 我不能保证

如果要检索原始图像数据,请改用the filesDownload method

filesGetThumbnail 专门用于检索调整大小后的图像版本,但 filesDownload 可用于检索任何类型文件的原始文件数据。