I recently started tinkering around with React Native/Expo and I'm currently working on an app. The app basically fetches a SVG from a URL (which works fine), and after the download is completed, the user should be able to save and share the downloaded image as a PNG. How do I convert the SVG string to a PNG file (without rendering it onscreen)? With plain JavaScript in the browser, you can just render the SVG to a canvas with data URIs and call toDataURL, but this does not seem to exist in RN. I looked at several packages like react-native-svg, but none of those seem to work out for me. Did I miss something or do I need to use some kind of online API?