我需要缩放 pdf 以填充屏幕的高度,但我发现的只是 function scale()
。我怎么知道要缩放多少?
问问题
7909 次
1 回答
10
要确定页面的宽度/高度,您需要执行以下操作:
获取页面
在“promise”函数中(页面只能异步检索):
一个。检索具有比例的视口
1
湾。调用
width
视口的属性
编码:
//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 );
});
于 2013-09-27T17:44:52.933 回答