UNPKG

@oguzhnatly/react-native-image-manipulator

Version:

ImageManipulator for react native without Expo and Unimodules. Based on Expo ImageManipulator

13 lines (9 loc) 251 B
import { NativeModules } from "react-native"; const { RNImageManipulator } = NativeModules; export type RNImageManipulatorResult = { uri: string; width: number; height: number; base64?: string; }; export default RNImageManipulator;