无法在React Native应用中调整SVG图像的大小

时间:2018-12-24 08:23:18

标签: javascript reactjs react-native svg expo

我有以下React Native项目:

https://snack.expo.io/BkBU8fAlV

我有以下代码:

import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';
import { Constants } from 'expo';

// You can import from local files
import AssetExample from './components/AssetExample';

// or any pure javascript modules available in npm
import { Card } from 'react-native-paper';

import HomerSvg from './assets/HomerSvg';

export default class App extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.paragraph}>
          Change code in the editor and watch it change on your phone! Save to get a shareable url.
        </Text>
        <View style={{ width: 80, height: 80 }}>
          <HomerSvg />
        </View>
        <Card>
          <AssetExample />
        </Card>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    paddingTop: Constants.statusBarHeight,
    backgroundColor: '#ecf0f1',
    padding: 8,
  },
  paragraph: {
    margin: 24,
    fontSize: 18,
    fontWeight: 'bold',
    textAlign: 'center',
  },
});

我通过使用SVG包的组件HomerSvg显示react-native-svg图像。

我需要以某种方式调整SVG图片的大小。在上面的代码中,我尝试未成功。

我尝试通过给容器视图一些宽度和高度来实现,但没有成功。

您对我该如何实现有任何想法吗?

谢谢!

4 个答案:

答案 0 :(得分:1)

您可以将所有<Path />元素包装在<G />内,并通过使用<G />(即设备的宽度和高度)计算比例因子来缩放Dimensions组件。 / p>

<G transform="scale(scaleFactor) translate(offsetX,offsetY)>
<Path/>
<Path/>
.
.
.
<G/>

其中scaleFactor,offsetX和offsetY可以通过const { height, width } = Dimensions.get("window")

计算

答案 1 :(得分:0)

除非SVG的尺寸基于容器的尺寸,否则它们不会更改。设置尺寸的图像会忽略其父级的尺寸,而您可以在HomerSvg.js中设置尺寸

希望这会有所帮助!

答案 2 :(得分:0)

实际上,如果没有React Native,而是SVG本身,这很容易解决。

只需将preserveAspectRatio标记设置为none

示例:

<Svg
  width={this.props.width}
  height={this.heights.h1}
  xmlns="http://www.w3.org/2000/svg" 
  viewBox="0 0 750 352"
  preserveAspectRatio="none">
...
</Svg>

答案 3 :(得分:0)

我知道这是一个老问题,但也许我们在这里忘记了基本原理,请记住,可以为某些导入的SVG提供宽度高度

import HomerSvg from './assets/HomerSvg';

<HomerSvg height={20} width={20}/>