mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Update src/plugins/pdfPlayer/plugin.js
change the default value for scale. Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
parent
695cdc6953
commit
b61260ccb9
1 changed files with 2 additions and 1 deletions
|
@ -281,7 +281,8 @@ export class PdfPlayer {
|
||||||
this.book.getPage(number).then(page => {
|
this.book.getPage(number).then(page => {
|
||||||
const width = dom.getWindowSize().innerWidth;
|
const width = dom.getWindowSize().innerWidth;
|
||||||
const height = dom.getWindowSize().innerHeight;
|
const height = dom.getWindowSize().innerHeight;
|
||||||
const viewport = page.getViewport({ scale: 5 });
|
const scale = Math.ceil(window.devicePixelRatio || 1);
|
||||||
|
const viewport = page.getViewport({ scale });
|
||||||
const context = canvas.getContext('2d');
|
const context = canvas.getContext('2d');
|
||||||
canvas.width = viewport.width;
|
canvas.width = viewport.width;
|
||||||
canvas.height = viewport.height;
|
canvas.height = viewport.height;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue