如何使用pdf.js确定pdf的大小,以便我可以缩放到屏幕大小?

时间:2013-09-27 04:51:17

标签: javascript html5 pdf pdf.js

我需要缩放pdf以使其填满屏幕的高度,但我发现的只是函数scale()。我怎么知道要缩放多少呢?

1 个答案:

答案 0 :(得分:6)

要确定页面的宽度/高度,您需要执行以下操作:

  1. 获取页面

  2. 在“promise”函数中(页面只能异步检索):

    一个。以1

    的比例检索视口

    湾调用视口的width属性

  3. 守则:

    //Get the page with your callback
    pdf.getPage(1).then( function(page) {
    
        //We need to pass it a scale for "getViewport" to work
        var scale = 1;
    
        //Grab the viewport with original scale
        var viewport = page.getViewport( 1 );
    
        //Here's the width and height
        console.log( "Width: " + viewport.width + ", Height: " + viewport.height );
    });