1

我指的是图像require,我想从精灵图像中裁剪图标。

const sprite = require('./sprite.png')
const crop = {left: 10, top: 50, width: 20, height: 40}

export const cartLogo = sprite({crop})
// How do I apply the crop to the sprite?

then

<Image source={cartLogo}/>

{uri: 'url-to-image', crop: {left: 10, top: 50, width: 20, height: 40}} 我在这里看到如何在 react-native 中裁剪图像。怎么办require

4

1 回答 1

0

我知道 require('./sprite.png') 很快就会贬值。

所以最好的管理方法是

image : {uri: ..., crop: {left: 10, top: 50, width: 20, height: 40}}

你也可以在这里关注我的帖子。

让我们知道您是否成功

于 2017-02-19T18:23:57.773 回答