如何在React Native上显示SVG文件?

时间:2016-08-08 13:31:18

标签: javascript svg react-native

我想显示svg文件(我有一堆svg图像),但我找不到显示的方式。我尝试使用 react-native-svg 图片使用组件,但它们无法使用。而且我尝试用原生方式做到这一点,但显示svg图像真的很难。

示例代码:

import Svg, {
  Use,
  Image,
} from 'react-native-svg';

<View>
  <Svg width="80" height="80">
     <Image href={require('./svg/1f604.svg')} />
  </SvgRn>
</View>

另外我知道本机的反应基本上不支持svg,但我认为有人用棘手的方式修复了这个问题(有/没有react-native-svg)

16 个答案:

答案 0 :(得分:19)

我使用以下解决方案:

  1. 使用https://svg2jsx.herokuapp.com/将.svg图像转换为JSX
  2. 使用https://svgr.now.sh/将JSX转换为react-native-svg组件(选中“ React Native”复选框)

答案 1 :(得分:7)

在尝试了很多方法和库后,我决定创建一个新字体(使用Glyphs或此tutorial)并将我的SVG文件添加到其中,然后使用&#34; Text&#34;我的自定义字体组件。

希望这可以帮助那些在反应原生中遇到与SVG相同问题的人。

答案 2 :(得分:5)

我在这里发布了另一个解决方案Which is the best approach to insert an vector (svg) graph into a react native application,这种方法使用矢量字体(来自svg)而不是svg文件。 PS:它在ios和android中运行良好,你也可以改变矢量图标的颜色和大小。

如果要将svg直接插入应用程序,可以尝试第三方库:react-native-svg。在github中有超过3k的星星,它是最好的方法之一。

  • 安装:
    • npm i react-native-svg
    • npm i react-native-svg-uri
  • 链接到本机:
    • react-native link react-native-svg

这是一个样本:

import * as React from 'react';
import SvgUri from 'react-native-svg-uri';
import testSvg from './test.svg';
export default () => (
  <SvgUri
    width="200"
    height="200"
    svgXmlData={testSvg}
  />
);

答案 3 :(得分:3)

我遇到了同样的问题。我正在使用这个解决方案:React Native display SVG from a file

它并不完美,而且我今天正在重访,因为它在Android上表现更差。

答案 4 :(得分:2)

安装react-native-svg-transformer

  

npm我react-native-svg-transformer --save

我正在按以下方式使用SVG,并且效果很好

import LOGOSVG from "assets/svg/logo.svg"

在渲染中

<View>
  <LOGOSVG 
    width="100%"
    height="70%"
  />
</View>

答案 5 :(得分:2)

我已经尝试了上述所有解决方案以及堆栈之外的其他解决方案,但没有一个对我有用。最终,经过长期的研究,我为我的世博项目找到了一种解决方案。

如果您需要它在博览会上工作,一种解决方法可能是使用https://react-svgr.com/playground/并将道具的传播移动到G元素而不是SVG根,如下所示:

import * as React from 'react';
import Svg, { G, Path } from 'react-native-svg';

function SvgComponent(props) {
  return (
    <Svg viewBox="0 0 511 511">
      <G {...props}>
        <Path d="M131.5 96c-11.537 0-21.955 8.129-29.336 22.891C95.61 132 92 149.263 92 167.5s3.61 35.5 10.164 48.609C109.545 230.871 119.964 239 131.5 239s21.955-8.129 29.336-22.891C167.39 203 171 185.737 171 167.5s-3.61-35.5-10.164-48.609C153.455 104.129 143.037 96 131.5 96zm15.92 113.401C142.78 218.679 136.978 224 131.5 224s-11.28-5.321-15.919-14.599C110.048 198.334 107 183.453 107 167.5s3.047-30.834 8.581-41.901C120.22 116.321 126.022 111 131.5 111s11.28 5.321 15.919 14.599C152.953 136.666 156 151.547 156 167.5s-3.047 30.834-8.58 41.901z" />
        <Path d="M474.852 158.011c-1.263-40.427-10.58-78.216-26.555-107.262C430.298 18.023 405.865 0 379.5 0h-248c-26.365 0-50.798 18.023-68.797 50.749C45.484 82.057 36 123.52 36 167.5s9.483 85.443 26.703 116.751C80.702 316.977 105.135 335 131.5 335a57.57 57.57 0 005.867-.312 7.51 7.51 0 002.133.312h48a7.5 7.5 0 000-15h-16c10.686-8.524 20.436-20.547 28.797-35.749 4.423-8.041 8.331-16.756 11.703-26.007V503.5a7.501 7.501 0 0011.569 6.3l20.704-13.373 20.716 13.374a7.498 7.498 0 008.134 0l20.729-13.376 20.729 13.376a7.49 7.49 0 004.066 1.198c1.416 0 2.832-.4 4.07-1.2l20.699-13.372 20.726 13.374a7.5 7.5 0 008.133 0l20.732-13.377 20.738 13.377a7.5 7.5 0 008.126.003l20.783-13.385 20.783 13.385a7.5 7.5 0 0011.561-6.305v-344a7.377 7.377 0 00-.146-1.488zM187.154 277.023C171.911 304.737 152.146 320 131.5 320s-40.411-15.263-55.654-42.977C59.824 247.891 51 208.995 51 167.5s8.824-80.391 24.846-109.523C91.09 30.263 110.854 15 131.5 15s40.411 15.263 55.654 42.977C203.176 87.109 212 126.005 212 167.5s-8.824 80.391-24.846 109.523zm259.563 204.171a7.5 7.5 0 00-8.122 0l-20.78 13.383-20.742-13.38a7.5 7.5 0 00-8.131 0l-20.732 13.376-20.729-13.376a7.497 7.497 0 00-8.136.002l-20.699 13.373-20.727-13.375a7.498 7.498 0 00-8.133 0l-20.728 13.375-20.718-13.375a7.499 7.499 0 00-8.137.001L227 489.728V271h8.5a7.5 7.5 0 000-15H227v-96.5c0-.521-.054-1.03-.155-1.521-1.267-40.416-10.577-78.192-26.548-107.231C191.936 35.547 182.186 23.524 171.5 15h208c20.646 0 40.411 15.263 55.654 42.977C451.176 87.109 460 126.005 460 167.5V256h-.5a7.5 7.5 0 000 15h.5v218.749l-13.283-8.555z" />
        <Path d="M283.5 256h-16a7.5 7.5 0 000 15h16a7.5 7.5 0 000-15zM331.5 256h-16a7.5 7.5 0 000 15h16a7.5 7.5 0 000-15zM379.5 256h-16a7.5 7.5 0 000 15h16a7.5 7.5 0 000-15zM427.5 256h-16a7.5 7.5 0 000 15h16a7.5 7.5 0 000-15z" />
      </G>
    </Svg>
  );
}

export default function App() {
  return (
    <SvgComponent width="100%" height="100%" strokeWidth={5} stroke="black" />
  );
}

答案 6 :(得分:2)

SVG 在 Native 应用程序中不直接支持。为了显示那些我们需要借助第三方模块

请按照以下步骤操作

步骤 1。安装 react-native-svgreact-native-svg-transformer

npm i react-native-svg react-native-svg-transformer

第 2 步。添加文件 metro.config.js 如果它不存在

const { getDefaultConfig } = require("metro-config");

module.exports = (async () => { 
    const {  
        resolver: { 
            sourceExts, 
            assetExts 
        }  
    } = await getDefaultConfig(); 

    return {
        transformer: {      
            babelTransformerPath: require.resolve("react-native-svg-transformer")    
        },    
        resolver: {
            assetExts: assetExts.filter(ext => ext !== "svg"),
            sourceExts: [...sourceExts, "svg"]    
        }};
})();

第 3 步。像 React 组件一样使用 SVG 文件

import Invest from '../assets/invest.svg'; // import SVG

return (
        <View>
            <Invest /> // Use SVG as component
        </View>
    )

答案 7 :(得分:0)

注意:Svg不适用于android发布版本,因此请不要考虑用于android。它将仅在调试模式下适用于android。但这对ios很好用。

使用https://github.com/vault-development/react-native-svg-uri

安装

npm install react-native-svg-uri --save
react-native link react-native-svg # not react-native-svg-uri

用法

import SvgUri from 'react-native-svg-uri';


<SvgUri source={require('./path_to_image/image.svg')} />

答案 8 :(得分:0)

使用https://github.com/kristerkari/react-native-svg-transformer

在此软件包中,提到了React Native v0.57及更低版本不支持.svg文件,因此对svg文件使用.svgx扩展名。

对于网络或本机网络,请使用https://www.npmjs.com/package/@svgr/webpack


要使用react-native-svg-uri和React-native版本0.57及更低版本渲染svg文件,您需要在根项目中添加以下文件

  

注意:将扩展名svg更改为svgx

步骤1:将文件transformer.js添加到项目的根目录

// file: transformer.js

const cleanupSvg = require('./cleanup-svg');

const upstreamTransformer = require("metro/src/transformer");

// const typescriptTransformer = require("react-native-typescript-transformer");
// const typescriptExtensions = ["ts", "tsx"];

const svgExtensions = ["svgx"]

// function cleanUpSvg(text) {
//   text = text.replace(/width="([#0-9]+)px"/gi, "");
//    text = text.replace(/height="([#0-9]+)px"/gi, "");
//    return text;
// }

function fixRenderingBugs(content) {
  // content = cleanUpSvg(content); // cleanupSvg removes width and height attributes from svg
  return "module.exports = `" + content + "`";
}


module.exports.transform = function ({ src, filename, options }) {
  // if (typescriptExtensions.some(ext => filename.endsWith("." + ext))) {
  //  return typescriptTransformer.transform({ src, filename, options })
  // }

  if (svgExtensions.some(ext => filename.endsWith("." + ext))) {
    return upstreamTransformer.transform({
      src: fixRenderingBugs(src),
      filename,
      options
    })
  }

  return upstreamTransformer.transform({ src, filename, options });
}

步骤2:将rn-cli.config.js添加到项目的根目录

module.exports = {
    getTransformModulePath() {
      return require.resolve("./transformer");
    },
    getSourceExts() {
      return [/* "ts", "tsx", */ "svgx"];
    }
  };

上述解决方案也将在生产应用中使用✅

答案 9 :(得分:0)

我使用这两个插件

  1. [react-native-svg] https://github.com/react-native-community/react-native-svg
  2. [ react-native-svg-transformer] https://github.com/kristerkari/react-native-svg-transformer

首先, 您需要安装该插件。之后,您需要使用此代码更改metro.config.js。

const { getDefaultConfig } = require("metro-config");

module.exports = (async () => {
  const {
    resolver: { sourceExts, assetExts }
  } = await getDefaultConfig();
  return {
    transformer: {
      babelTransformerPath: require.resolve("react-native-svg-transformer")
    },
    resolver: {
      assetExts: assetExts.filter(ext => ext !== "svg"),
      sourceExts: [...sourceExts, "svg"]
    }
  };
})();

有关更多详细信息,您可以访问此链接

答案 10 :(得分:0)

您可以将任何SVG转换为组件并使其可重用。

这是我最简单的答案

SVG to component

答案 11 :(得分:0)

import React from 'react'
import SvgUri from 'react-native-svg-uri';

export default function Splash() {
  return (
    <View style={styles.container}>
      {/* provided the svg file is stored locally */}
      <SvgUri
        width="400"
        height="200"
        source={require('./logo.svg')}
      />
      {/* if the svg is online */}
      <SvgUri
        width="200"
        height="200"
        source={{ uri: 'http://thenewcode.com/assets/images/thumbnails/homer-simpson.svg' }}
      />

      <Text style={styles.logoText}>
        Text
      </Text>
    </View>
  )
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center'
  },
  logoText: {
    fontSize: 50
  }
});

答案 12 :(得分:0)

您可以使用一种简单的方法来实现

首先,您应该进行安装

  1. npm install -s react-native-svg
  2. react-native链接react-native-svg
  3. npm install -s react-native-svg-transformer

然后,您应该在metro.config.js文件中添加以下代码

const { getDefaultConfig } = require("metro-config");
module.exports = (async () => {
  const {
    resolver: { sourceExts, assetExts }
  } = await getDefaultConfig();
  return {
    transformer: {
      babelTransformerPath: require.resolve("react-native-svg-transformer")
    },
    resolver: {
      assetExts: assetExts.filter(ext => ext !== "svg"),
      sourceExts: [...sourceExts, "svg"]
    }
  };
})();

之后,您应该使用以下代码在根目录中创建一个名为clarifications.d.js的新文件

declare module "*.svg" {
  import { SvgProps } from "react-native-svg";
  const content: React.FC<SvgProps>;
  export default content;
}

最后, 这是一个导入方法

import USER from "../../assets/icons/user.svg"

这是针对jsx

<USER width="100%" height="100%"/>

答案 13 :(得分:0)

  1. 首先将 react-native-svg 安装到您的项目中。
  2. 打开 https://react-svgr.com/ 并转到 Playground 并选择 React Native
  3. 复制粘贴您的 SVG 代码并使用输出代码。

例如:- 这是我得到的示例 SVG。

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="17" height="17" viewBox="0 0 17 17">
    <defs>
        <path id="a" d="M16.191 1.027L9.023 8.196l7.168 7.168-.83.83-7.169-7.167-7.168 7.168-.831-.831L7.36 8.196.19 1.027l.832-.83L8.19 7.366 15.359.197z"/>
    </defs>
    <g fill="none" fill-rule="evenodd">
        <mask id="b" fill="#fff">
            <use xlink:href="#a"/>
        </mask>
        <use fill="#FFF" fill-rule="nonzero" xlink:href="#a"/>
        <g fill="#3D3D3D" mask="url(#b)">
            <path d="M0 0h16v16H0z"/>
        </g>
    </g>
</svg>

输出:-

import * as React from "react"
import Svg, { Defs, Path, G, Mask, Use } from "react-native-svg"

function SvgComponent(props) {
  return (
    <Svg
      xmlns="http://www.w3.org/2000/svg"
      xmlnsXlink="http://www.w3.org/1999/xlink"
      width={17}
      height={17}
      viewBox="0 0 17 17"
      {...props}
    >
      <Defs>
        <Path
          id="prefix__a"
          d="M16.191 1.027L9.023 8.196l7.168 7.168-.83.83-7.169-7.167-7.168 7.168-.831-.831L7.36 8.196.19 1.027l.832-.83L8.19 7.366 15.359.197z"
        />
      </Defs>
      <G fill="none" fillRule="evenodd">
        <Mask id="prefix__b" fill="#fff">
          <Use xlinkHref="#prefix__a" />
        </Mask>
        <Use fill="#FFF" fillRule="nonzero" xlinkHref="#prefix__a" />
        <G fill="#3D3D3D" mask="url(#prefix__b)">
          <Path d="M0 0h16v16H0z" />
        </G>
      </G>
    </Svg>
  )
}

export default SvgComponent

** 但是当我在我的项目中使用上面的代码时,它没有正确呈现。所以我按照下面的方式做了,不知何故它对我有用。

import * as React from "react"
import Svg, { Path, G } from "react-native-svg"

function SvgComponent(props) {
  return (
    <Svg
      width={17}
      height={17}
      {...props}
    >
        <G>
            <Path
                id="prefix__a"
                d="M16.191 1.027L9.023 8.196l7.168 7.168-.83.83-7.169-7.167-7.168 7.168-.831-.831L7.36 8.196.19 1.027l.832-.83L8.19 7.366 15.359.197z"
            />
        </G>
    </Svg>
  )
}

export default SvgComponent

答案 14 :(得分:0)

我编写了一个新库,以便能够使用基于名为 react-native-vector-image.svg 文件的原生矢量资源。它不需要任何自定义 babel 转换,您可以像处理其他基于位图的资产一样使用它,但是将 svg 转换为原生等效项还有一个额外的步骤(尽管您只需要在添加新资产时运行它) ).

使用您的示例,代码看起来像这样

import VectorImage from 'react-native-vector-image';

<View>
  <VectorImage source={require('./svg/1f604.svg')} />
</View>

答案 15 :(得分:-6)

所有这些解决方案都是可怕的。只需将SVG转换为PNG,然后使用普通<Image/>组件即可。在Image组件中,react-native仍然不支持SVG图像的事实是一个笑话。您绝对不应为此类简单任务安装其他库。使用https://svgtopng.com/