使用 react-konva 翻转图像

IT技术 reactjs image flip konvajs react-konva
2021-05-24 06:16:52

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

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

  flip = direction => {
    this.setState({
      width: -this.state.width
    })
  }
1个回答

最好使用 scale 属性:

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

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

https://codesandbox.io/s/v6yk2j2w0l