我已经尝试将图片分割成几个小时了。
我认为它可以与ImageEditor.cropImage
一起使用。显然我使用的功能有误,或者它没有实现我期望的功能。
有人可以告诉我我做错了什么,还是推荐我可以使用的包装。谢谢。
我的尝试
const cropData = {
offset: {x: 25, y: 25},
size: {width: 250, height: 250},
displaySize: {width: 250, height: 250},
resizeMode: 'contain',
};
稍后..
ImageEditor.cropImage(require('../resources/images/pictures/categoryOne/c1b1.jpg'),
cropData);
答案 0 :(得分:0)
我不是通过ImageEditor.cropImage而是通过CSS解决了我的问题
<View style={styles.topLeftView}>
<Image
style={styles.topLeftImage}
source={require('../resources/images/pictures/categoryOne/c1b1.jpg')}
resizeMode="contain"
/>
</View>
样式
topLeftView: {
width: 100,
height: 100,
overflow: 'hidden',
},
topLeftImage: {
right: 0,
bottom: 0,
},