如何在pdfmake中增加页脚高度
How to incress footer height in pdfmake
我正在使用 pdfmake,我想增加 pdf 页脚的高度。
目前我有这个页脚代码
footer: function (currentPage, pageCount) {
return {
height: 40,
table: {
widths: ['*', 100],
body: [
[
{ text: 'some information', alignment: 'center', fontSize: 9, },
],
[
{ text: 'some more information', alignment: 'center', fontSize: 9, },
],
[
{ text: 'and even more information', alignment: 'center', fontSize: 9, },
],
[
[{ text: 'Page ' + pageCount, alignment: 'right', margin: [5], fontSize: 5, }]
]
]
},
layout: 'noBorders'
};
},
我添加了一个高度 属性,当我将它设置为更高的数字(例如 80)时,我将其设置为 40 它对页脚的高度没有影响 我该如何解决这个问题 坦克你求助。
我可以通过添加此行更改页边距来获得更大的页脚
pageMargins: [40, 80, 40, 60],
在我的文档定义下是这样
let docDefinition = {
pageSize: 'LEGAL',
pageMargins: [40, 80, 40, 60],
}
我正在使用 pdfmake,我想增加 pdf 页脚的高度。
目前我有这个页脚代码
footer: function (currentPage, pageCount) {
return {
height: 40,
table: {
widths: ['*', 100],
body: [
[
{ text: 'some information', alignment: 'center', fontSize: 9, },
],
[
{ text: 'some more information', alignment: 'center', fontSize: 9, },
],
[
{ text: 'and even more information', alignment: 'center', fontSize: 9, },
],
[
[{ text: 'Page ' + pageCount, alignment: 'right', margin: [5], fontSize: 5, }]
]
]
},
layout: 'noBorders'
};
},
我添加了一个高度 属性,当我将它设置为更高的数字(例如 80)时,我将其设置为 40 它对页脚的高度没有影响 我该如何解决这个问题 坦克你求助。
我可以通过添加此行更改页边距来获得更大的页脚
pageMargins: [40, 80, 40, 60],
在我的文档定义下是这样
let docDefinition = {
pageSize: 'LEGAL',
pageMargins: [40, 80, 40, 60],
}