图片pdf定制
Image pdfmake customization
我正在使用 pdfmake,我在文档中有一个像这样的 base64 图像。
如何把图片放在标题前?
extend: 'pdfHtml5',
orientation: 'landscape',
pageSize: 'A3',
sTitle: "id",
mDataProp: "id",
sWidth: '250%',[enter image description here][1]
customize: function(doc) {
doc.content.splice(1, 0, {
columns: [{
margin: 10,
alignment: 'left',
image: 'data:image/png;base64,/...',
width: 95,
height: 40,
},]
});
},
改变
doc.content.splice(1, 0, {
成为:
doc.content.splice(0, 0, {
我正在使用 pdfmake,我在文档中有一个像这样的 base64 图像。
如何把图片放在标题前?
extend: 'pdfHtml5',
orientation: 'landscape',
pageSize: 'A3',
sTitle: "id",
mDataProp: "id",
sWidth: '250%',[enter image description here][1]
customize: function(doc) {
doc.content.splice(1, 0, {
columns: [{
margin: 10,
alignment: 'left',
image: 'data:image/png;base64,/...',
width: 95,
height: 40,
},]
});
},
改变
doc.content.splice(1, 0, {
成为:
doc.content.splice(0, 0, {