收藏
回答

小游戏是不是不能旋转图片呀

小游戏是不是不能旋转图片呀

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

2 个回答

  • malloc
    malloc
    2022-11-07

    可以旋转图片的,但是不是直接旋转图片,是先旋转画布,然后再drawImage,再将画布还原(摆正)就行了

    2022-11-07
    有用
    回复
  • AieyLisyh
    AieyLisyh
    2018-10-27

    可以旋转图片的父对象呀

    2018-10-27
    有用
    回复 2
    • 王
      2018-10-27

      大神怎么做的,可以给一点代码参考一下吗


      2018-10-27
      回复
    • 王
      2018-10-31

      只找到一个旋转

      this.canvas1 = wx.createCanvas()

         this.ctx1 = this.canvas1.getContext('2d')

         this.img1 = new Image()

         this.img1.src = 'images/hero.png'

         this.ctx1.drawImage(

           this.img1,

           0,

           0,

           this.width,

           this.height,

           0,

           this.top,

           screenWidth/2,

           screenHeight/2

         )

         this.ctx1.rotate(Math.PI / 2)

      想旋转屏幕上的一个东西 失败了  这个只能整个旋转


      2018-10-31
      回复
登录 后发表内容