docx-pdf-pagecount

module to get number of pages in docx and pdf file

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
docx-pdf-pagecount
2230.0.36 years ago6 years agoMinified + gzip package size for docx-pdf-pagecount in KB

Readme

docx-pdf-pagecount
A npm module to page count of a docx or pdf file.

Installation

npm install docx-pdf-pagecount

Usage

``` const getPageCount = require('docx-pdf-pagecount'); getPageCount('E:/sample/document/aa/test.docx') .then(pages => {
console.log(pages);
}) .catch((err) => {
console.log(err);
}); getPageCount('E:/sample/document/vb.pdf') .then(pages => {
console.log(pages);
}) .catch((err) => {
console.log(err);
}); ```