使用 react-konva 翻转图像

Flip Image with react-konva

https://github.com/lavrton/react-konva

如何翻转图像(水平或垂直) 我正在使用此功能,但它不起作用:

  flip = direction => {
    this.setState({
      width: -this.state.width
    })
  }

最好用刻度属性:

<Image image={this.state.image} scaleY={-1} y={200}/>

所以在你所在的州,你应该用 1 或 -1 值存储 scale 属性,

https://codesandbox.io/s/v6yk2j2w0l