gpt4 book ai didi

javascript - 如何使用 addHTML 方法在 jsPDF 中的所有 PDF 页面上添加页眉和页脚

转载 作者:太空狗 更新时间:2023-10-29 13:45:11 26 4
gpt4 key购买 nike

我正在使用 jspdf 将 html 转换为 pdf。我正在使用 addHTML 方法将 html 页面转换为 pdf

  var htmlSource = $('#body')[0];

function crate (){
var pdf = new jsPDF('p','px');

pdf.addHTML(
htmlSource,10, 10, {pagesplit: true, margin: {top: 10, right: 10,bottom: 10, left: 10, useFor: 'page'}},
function(dispose){
pdf.save('datapdf.pdf');
}
);

我想在所有页面上添加页眉和页脚,或者为页眉和页脚留出空白。但是使用选项我只能在pdf的第一页留下标题空间。

最佳答案

一种方法可能是在客户端浏览器中重新填充 html 页面呈现,以便完全按照您希望在 pdf 中打印的方式显示它(然后只需使用您刚刚在上面创建的函数),因此以组合格式显示通过一系列垂直元素,如 h、p1、f、h、p2、f、h、p3、f 等(其中 h=页眉,p1 ... pn 是页面,f=页脚)而不是一系列包含只是 h, p1, p2, p3, ... , pn, f(现在是这样)。

这意味着您可以访问 html 页面的源代码(因此它不仅仅是从互联网上获取的页面),因为如果它是外部资源,则页眉和页脚的尺寸可能是以编程方式构建的还填充与页面其他元素相关的空间(我认为这里的 flex/垂直应用/或呈现网页的网格技术)。

另一方面,如果要执行此方法,可能内容拆分并不总是可行的(我在这里不考虑销毁表格或其他仅在使用滚动时可见的多页元素),但是渲染也可能会考虑页面的垂直显示(与桌面中的横向模式相反),以便重新绘制页面中的元素。有时这会使页脚和页眉变大,所以我不确定您为什么要通过这样做来花费最终打印页面的部分宝贵 Assets 。 (解决方案可能是打开一个新窗口,从而以新格式重新呈现页面,甚至可能在现有页面后面,然后在关闭相应页面之前启动打印确认/或下载文件。)

另一种方法是更改​​函数以便使用页面的虚拟渲染(无显示页面)- 通过对您的函数进行更改而不是渲染本身。

但是,第二种方法也存在一些挑战。最初,在声明变量 'var pdf' 时,它被创建为一个唯一的数据存储容器,然后将构造函数分配给它( var pdf = new jsPDF('p','px'); )。但是,在下一步中,您将向其添加一个 HTML 内容 (pdf.addHTML),它是单个元素,而不是多个实体。您应该更改函数以使其打印一个数组,您首先根据呈现的页面尺寸计算元素。

也许代码会变成这样:

var fullpage, onepage, headd, foott, edges, contentt, he, fo, c, pages;
fullpage = document.body.scrollHeight; // height of all html page (not just the visible content)
onepage = 1200; // height of each single page printed in pdf - in pixels
headd = document.getElementById("header");
he = headd.offsetHeight;
foott = document.getElementById("footer");
fo = foott.offsetHeight;
edges = he + fo;
contentt = onepage - edges; // height of content of each page printed

pages = [0]; // start to work with first page which obviously is there
fullpage -= onepage; // remove height of first printed page (containg both header and footer)
pdf.addHTML( // create first page of pdf file
htmlSource, 10, 10, {pagesplit: true, margin: {top: 10, right:
10, bottom: 10, left: 10, useFor: 'page'}},
function(dispose){
pdf.save('datapdf.pdf');
}); // this is your code

var i = 0; // start the counter

while(fullpage > 0) { // start adding header + footer to remaining pages
fullpage += edges; // if there is still a page 2...n we add edges, etc.
i++;
pages[i] = content(onepage) { // here you must insert the code for harvesting the n-st page content from your source code
return htmlSource;
}
function addPages(i) {
var eachpdf = "datapdf" + i + ".pdf";
// <= here goes again your code, with a small change
// pagesplit: false - instead of true, in order to speed the process, and also
// pdf.save(eachpdf); - instead of pdf.save('datapdf.pdf');
}
}

你试图实现的是创建一个系列 he, p1, fo, he, p2, fo, he, p3, fo, etc(其中 he=header, p1 ... pn 是上面的页面/命名为 datapdfi/和 fo=footer) 而不是仅包含 h、p1、p2、p3、...、pn、f 的系列。

这意味着您必须构建一个包含单独的 pdf 页面的数组,如上面的代码所述。

我还没有为您创建用于分隔每个页面内容的代码(它可能会返回 htmlSource),但是这严格依赖于您的页面呈现方式。

关于javascript - 如何使用 addHTML 方法在 jsPDF 中的所有 PDF 页面上添加页眉和页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49854127/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com