导入的pdf文件前台手机版显示模糊

作者: 来源:本站原创 点击数: 发布时间:2021年11月10日

效果如下:PDF导入的文件,PC版前台显示正常,但是手机版显示模糊。

81a03c6a3d0944e68e3aff7d3216f580.png

处理方法:\content\_common\Base\js\power.js

611b70dc8e8a43f28b76d0725937ec80.png

                            var CSS_UNITS = 96.0 / 72.0;
                            var widthScale = viewport.height / viewport.width;
                            canvas.width = Math.floor(viewport.width * CSS_UNITS);
                            canvas.height = Math.floor(viewport.height * CSS_UNITS);

                            canvas.style.width = $("[data-power-area='content']").width() + "px";
                            canvas.style.height = Math.floor($("[data-power-area='content']").width() * widthScale) + "px";

                            
                            var renderContext = {
                                transform: [CSS_UNITS, 0, 0, CSS_UNITS, 0, 0],
                                canvasContext: ctx,
                                viewport: viewport
                            };