我已根据https://datatables.net/extensions/buttons/examples/html5/pdfImage.html上的文档在pdf文档中添加了图片 这将在页面标题下方显示图像。但是,我希望图像位于标题上方。如何更改这两个元素的顺序?
以下是我正在使用的javascript代码:
$('#dataTable').DataTable( {
dom: 'Bfrtip',
"pageLength": 50,
buttons: [
'copy', 'excel',
{
extend: 'pdfHtml5',
customize: function ( doc ) {
doc.content.splice( 1, 0, {
image: 'data:image/png;base64,==image-text-here==',
margin: [ 0, 0, 0, 12 ],
alignment: 'center',
width: 250,
height: 100
} );
}
}, 'print'
]
} );