收藏
回答

微信小程序报错1009啥原因?

  1. {errcode: 1009, errmsg: "drawWxml preLoadImage error"}
  2. errcode1009
  3. errmsg"drawWxml preLoadImage error"


回答关注问题邀请回答
收藏

3 个回答

  • 社区技术运营专员--阳光
    社区技术运营专员--阳光
    2022-07-01

    那个接口?

    2022-07-01
    有用
    回复
  • Bubble
    Bubble
    2023-02-20

    drawImage () {

      let _this = this;

      var drawimg = new Wxml2Canvas({

          width: _this.data.width*2,

          height: _this.data.height*2,

          destWidth: _this.data.destWidth*2,

          destHeight: _this.data.destHeight*2,

          element: 'canvas1',

          // background: '#000000',

          backgroundColor: 'white',

          progress (percent) {

          },

          finish(url) {

              wx.hideLoading();

              wx.saveImageToPhotosAlbum({

                  filePath: url

              })

          },

          error (res) {

          }

      });

      console.log(_this.data.width);

      let data = {

          list: [

          {   //绘制矩形

              type: 'rect',

              x: 0,

              y: 50,

              style: {

                  width: _this.data.width,

                  height: _this.data.height,

                  fill: '#fff'

              }

          },

          {   //根据wxml绘制,

              type: 'wxml',

              class: '.share-info .draw_canvas',

              limit: '.share-info',

              x: 0,

              y: 0

          }]

      }

      drawimg.draw(data);

    我这真机也报1009的错误 }

    2023-02-20
    有用
    回复 2
    • 长安
      长安
      2023-08-15
      有解决吗
      2023-08-15
      回复
    • 🍪
      🍪
      01-29
      有解决嘛
      01-29
      回复
  • 王东升17513156525
    王东升17513156525
    2022-08-09

    Wxml2Canvas

    this.drawImageObj.draw(data);

     type: 'wxml',

              class: `.content${index} .backImg,.content${index} .logoImg,

              .content${index} .title .titles,.content${index} .verticals .row .absoult`,  // draw_canvas指定待绘制的元素

              // class:`.content${index} .title .titles`,

              limit: `.content${index}`, // 限定绘制元素的范围,取指定元素与它的相对位置

              x: 0,

              y: 0



    导入的dom为多个是会出现这种现象,请问有解决方案吗?


    2022-08-09
    有用
    回复
登录 后发表内容