使用react-konva翻转图片

时间:2018-06-04 23:42:25

标签: reactjs image flip konvajs react-konva

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

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

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

1 个答案:

答案 0 :(得分:2)

最好使用scale属性:

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

因此,在您所在的州,您应该将scale属性存储为1或-1值,

https://codesandbox.io/s/v6yk2j2w0l