admin管理员组文章数量:1345884
This is the input field for the document to be uploaded
<ion-item>
<ion-input name='File' required type="file" (change)="getNoOfPages($event)"></ion-input>
</ion-item>
This is the function am calling after the file is selected, am using the string split method to find the type because 'type' does not always holds the file type info, can I use any js library to find the number of pages in uploaded document (pdf in this case) or do I have to use anything in specific to make it work on android ? and how ?
getNoOfPages(event: any) {
const fileInfo = event.target.files[0];
const type = fileInfo.name.split('.')[1];
console.log('document uploaded ', fileInfo);
switch (type) {
case 'docx':
break;
case 'pdf':
console.log('this is a pdf file');
break;
}
}
This is the input field for the document to be uploaded
<ion-item>
<ion-input name='File' required type="file" (change)="getNoOfPages($event)"></ion-input>
</ion-item>
This is the function am calling after the file is selected, am using the string split method to find the type because 'type' does not always holds the file type info, can I use any js library to find the number of pages in uploaded document (pdf in this case) or do I have to use anything in specific to make it work on android ? and how ?
getNoOfPages(event: any) {
const fileInfo = event.target.files[0];
const type = fileInfo.name.split('.')[1];
console.log('document uploaded ', fileInfo);
switch (type) {
case 'docx':
break;
case 'pdf':
console.log('this is a pdf file');
break;
}
}
Share
Improve this question
edited Sep 24, 2019 at 12:06
help-info.de
7,29816 gold badges42 silver badges42 bronze badges
asked Sep 24, 2019 at 11:48
Akash GajbhiyeAkash Gajbhiye
3354 silver badges18 bronze badges
1 Answer
Reset to default 11You could use a pure javascript (typescript syntax) solution:
const reader = new FileReader();
const fileInfo = event.target.files[0];
if (fileInfo) {
reader.readAsBinaryString(event.target.files[0]);
reader.onloadend = () => {
const count = reader.result.match(/\/Type[\s]*\/Page[^s]/g).length;
console.log('Number of Pages:', count);
}
}
I tested it on many pdf docs and it works.
-Best regards.
本文标签: javascriptHow to get the number of pages in PDF fileStack Overflow
版权声明:本文标题:javascript - How to get the number of pages in PDF file? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743780860a2537798.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论