私は個人的なプロジェクトに取り組んでおり、ファイル システムから pdf ファイルを取得して、ANYHOW でその内容を読み取ることができる機能が必要です。
考えられるすべてのライブラリを試しましたが、何も機能せず、ほとんどのライブラリはサポートされていません。
ちなみに、私はiosでテストしています。
私の立場の例は次のようになります。
<View style={styles.buttonPdfContainer}>
<Image style={styles.pdfIcon} source={require('../resources/pdf.png')}/>
<TouchableOpacity onPress={() => {
// navigation.navigate('Info')
var RNFS = require('react-native-fs');
const pdf = require('pdf-parse');
let dataBuffer = RNFS.readFileSync('path to PDF file...');
pdf(dataBuffer).then(function(data) {
// number of pages
console.log(data.numpages);
// number of rendered pages
console.log(data.numrender);
// PDF info
console.log(data.info);
// PDF metadata
console.log(data.metadata);
// PDF.js version
// check https://mozilla.github.io/pdf.js/getting_started/
console.log(data.version);
// PDF text
console.log(data.text);
});
}}>
<Text style={styles.manualText}>with Notenspiegel pdf</Text>
</TouchableOpacity>
</View>
たとえば、このコードを実行すると、-> null はオブジェクトではありません (RNFSManager.RNFSFileTypeRegular を評価します)
任意の助けをいただければ幸いです。