如何显示图像的唯一部分

时间:2017-11-18 03:34:25

标签: javascript css image reactjs react-native

更新由于问题复杂且不清楚,我正在重写我的问题以使其更简单。

enter image description here

鉴于

  • 图像(整个图像的图像uri;示例中的600x600图像)
  • left(x-coordinate;示例中为50)
  • top(y坐标;示例中的100)
  • 宽度(图像宽度;示例中为300)
  • 高度(图​​像的高度;示例中的300)

我想要什么

  • 300 x 300图像(裁剪为图像)
  • 70 x 70图像(我最终将图像尺寸调整为70 x 70尺寸)

这是我的示例代码

// render the part of the image
console.log(left); // 50
console.log(thumbSize); // 300
return (
        <Image
          source={{uri: image}}
          style={selectedStyle(left, top, thumbSize)}/>
      );
... 
function selectedStyle(left, top, thumbSize) {
  return {
    left,
    top,
    width: thumbSize,
    height: thumbSize
  };
}
来自zvona的工作演示的

更新,我想要的就是这个。

enter image description here但没有别的。

enter image description here

1 个答案:

答案 0 :(得分:1)

以下是一个工作示例:https://snack.expo.io/@zvona/cropped-image

我们的想法是使用自定义维度将View放置在其中Image。我在我的例子中使用常量来澄清这个案例。

<View style={styles.cropped}>
  <Image
    style={styles.image}
    source={{uri: 'https://upload.wikimedia.org/wikipedia/en/0/02/Homer_Simpson_2006.png'}} />
</View>

关于风格:

  image: {
    marginLeft: -OFFSET_LEFT,
    marginTop: -OFFSET_TOP,
    width: IMAGE_WIDTH,
    height: IMAGE_HEIGHT,
  },

  cropped: {
    width: 150,
    height: 150,
    overflow: 'hidden',
    position: 'absolute',
    left: OFFSET_LEFT,
    top: OFFSET_TOP,
  },

请注意,ImageBackground仅用于示例目的,在实际实现中不需要。