admin管理员组

文章数量:1352128

I want to get the current page number from pdf.js when user

Click's some Button.I'm not opening pdf file in iframe like that

Below link

using iframe

I'm using the pdf.js Directly From the GitHub Project

My Question is how can I get the Current page Number from

pdf.js

I want to get the current page number from pdf.js when user

Click's some Button.I'm not opening pdf file in iframe like that

Below link

using iframe

I'm using the pdf.js Directly From the GitHub Project

My Question is how can I get the Current page Number from

pdf.js

Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Feb 24, 2017 at 12:56 Mari SelvanMari Selvan 3,7924 gold badges24 silver badges42 bronze badges 1
  • try this stackoverflow./a/35887722 .......................... .......................... – Marcus Li Commented Apr 11, 2017 at 2:27
Add a ment  | 

1 Answer 1

Reset to default 7

PDFViewerApplication.pdfViewer.currentPageNumber is a getter and setter. Examples:

// Go to page 5
PDFViewerApplication.pdfViewer.currentPageNumber = 5;

// Move two pages forward
PDFViewerApplication.pdfViewer.currentPageNumber += 2;

本文标签: javascriptpdfjsHow can we get the current pdf page number using pdfjsStack Overflow