我正在努力尝试使用PDFmake将文本放在图像上,我正在使用PDFMAKE playground图像演示
var dd = {
content: [
{
stack:[
{
text:'pdfmake (since it\'s based on pdfkit) supports JPEG and PNG format',
color:'#333',
fontSize: 17
},
{
image: 'sampleImage.jpg',
}
]
}
]
}
任何dea怎么可以这样啊?
答案 0 :(得分:1)
重复的问题:Embedding a background image in pdfmake
将图像放在背景中
var dd = {
pageSize: 'LETTER',
background: [
{
image: 'sample.jpg',
width: 792
}
],
content: [
'text'
]