我在理解PDFBox如何工作方面遇到了一些麻烦,所以我希望有人可以帮助我。这是我的代码:
InputStream content=null;
try{
content = document.getImageStream(1);
//Add image of word "Approved" at specific x and y coordinate in PDF
//Do more stuff with InputStream content
下面我已经有一堆使用该InputStream的代码,所以我想要做的是使用PDFBox来更新" InputStream通过在给定的x和y坐标处添加文本框然后仍然具有相同的InputStream来保存PDF,这样我就可以继续使用它了。
到目前为止,我所知道的是从InputStream创建一个PDDocument,如下所示:
PDDocument pddocument = PDDocument.load(content);
感谢您的帮助!