如何在React Native中切片图像?

时间:2018-03-14 02:28:17

标签: react-native

我是React Native的新手。有人能指出我在正确的方向吗?我尝试完成以下操作:给定一些图像,我想将其切片,以便可以单独触摸每个切片,并将切片保存为图像。

原始图像

enter image description here

切片

enter image description here

1 个答案:

答案 0 :(得分:1)

这是一张图片。每个正方形都是<View> <Image source={IMAGE} style={{ resizeMode:'stretch' width:origImageWidth, height:origImageHeight, top:CALC_ME, left:CALC_ME }}/>,但每个图像都会偏移,以显示其中的一部分。