Convert raw images (.dng, .nef, .rw2, .cr2 and .arw tested) to png, only android implemented.
Personal project not recommended for production.
npm install react-native-raw-image
rawToPng(path: string) => Promise<string | null>;
import { rawToPng } from 'react-native-raw-image';
rawToPng('file:///data').then(photo => {
// photo saved at cache folder
});
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library