如何使用javascript将图像添加到pdf文档

时间:2017-04-04 08:59:06

标签: javascript pdf jspdf pdf.js

我正在使用pdf.js在浏览器上查看pdf文档,我想在某个位置(如点击位置)将图像添加到pdf文档中,这可能吗?什么js库允许我这样做? 我尝试使用jsPdf生成带有图像的新pdf,但jsPdf不支持使用现有的pdf。

1 个答案:

答案 0 :(得分:-1)

注意!将最新的pdf.js库添加到源代码中。

// load image from local file
pdf.imageLoadFromUrl('image1.jpg');
// place this mage at given X, Y coordinates on the page
pdf.imagePlace(20, 40);

源:    PDF.js Inserting Images