get word document count and number of slides count in PPT

前端 未结 1 1375
我在风中等你
我在风中等你 2021-01-26 12:09

Is it possible to get the number of pages in word document or number of slides in a ppt.

I have done a lot of research on it and i am desperately looking for solution.

相关标签:
1条回答
  • 2021-01-26 12:27

    To get meta data properties of doc,docx,ppt and pptx like number of pages, number of slides **USING PHP** i followed the following process and it worked liked charm and iam so happy, below is the process i followed , hope it helps someone

    **Download and configure Apache Tika.**
    

    once its done you could try executing the following commadn it will give all the meta data about your file

    java -jar tika-app-1.5.jar -m test.docx
    java -jar tika-app-1.5.jar -m test.doc
    java -jar tika-app-1.5.jar -m test.pptx
    java -jar tika-app-1.5.jar -m test.ppt
    

    once tested you can execute this comman in PHP script. Thanks.

    0 讨论(0)
提交回复
热议问题