0.2.0 • Published 1 year ago

react-native-raw-image v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-native-raw-image

Convert raw images (.dng, .nef, .rw2, .cr2 and .arw tested) to png, only android implemented.

Personal project not recommended for production.

Installation

npm install react-native-raw-image

Usage

rawToPng(path: string) => Promise<string | null>;
import { rawToPng } from 'react-native-raw-image';

rawToPng('file:///data').then(photo => {
    // photo saved at cache folder
});

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library