以原生方式裁剪图像

时间:2017-02-15 06:33:24

标签: javascript reactjs react-native ecmascript-6 react-native-image

我是通过<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>. 引用图像,我想从精灵图像中裁剪图标。

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}/> in here时看到如何在react-native中裁剪图像。如何使用{uri: 'url-to-image', crop: {left: 10, top: 50, width: 20, height: 40}}

1 个答案:

答案 0 :(得分:0)

我知道要求(&#39; ./ sprite.png&#39;)很快就会弃用。

这是使用

管理它的最佳方式
image : {uri: ..., crop: {left: 10, top: 50, width: 20, height: 40}}

您也可以关注my post here.

如果您成功,请告诉我们