quanyawei
2024-11-15 f752f50a484f63fc3786ab1c7ad563f3b17cce77
src/utils/exportLUImage.js
@@ -23,7 +23,6 @@
      const images1 = {
        fileListOne: [],
        fileListTwo: [],
        fileListThree: [],
        o3Map: [],
        o3Sence: [],
        pm10Map: [],
@@ -49,6 +48,7 @@
                // images1.push({ [src]: base64 })
                if (j === 0) {
                  images1.fileListOne.push({ src: base64 })
                  // console.log(images1.fileListOne,'images1.fileListOne')
                } else if (j === 1) {
                  images1.fileListTwo.push({ src: base64 })
                } else if (j === 2) {
@@ -79,10 +79,10 @@
      }
    })
    p.then(res => {
      opts.getImage = function(image) {
      opts.getImage = function (image) {
        return base64DataURLToArrayBuffer(image)
      }
      opts.getSize = function() {
      opts.getSize = function () {
        return [480, 300]
      }
@@ -144,7 +144,7 @@
  var image = new Image()
  image.crossOrigin = ''
  image.src = url
  image.onload = function() {
  image.onload = function () {
    base64Img = imageToBase64(image)
    cb && cb(base64Img)
  }