A react native plugin to convert PDF pages to images
npm install react-native-pdf-to-image
sh
npm install react-native-pdf-to-image
`
Usage
`js
import { convert, convertB64 } from 'react-native-pdf-to-image';
const uri = 'file:///data/.........' // Any PDF file uri
const images = await convert(uri); // { outputFiles: [' / image file path in cache /'] }
``