I have a static image that i crop with a circle and now i want to save this modified image in my device's gallery, does anyone know how to do that? I am using TypeScript.
import React from "react";import { SafeAreaView } from "react-native";import Svg, { Circle, ClipPath, Defs, Image } from "react-native-svg";export const App = () => { return (<SafeAreaView><Svg><Image href={require('./apple.jpg')} clipPath="url(#clip)" /><Defs><ClipPath id="clip"><Circle cx="150" cy="150" r="150" /></ClipPath></Defs></Svg></SafeAreaView> );}export default App;