我是新來的itext,我無法讓我的註釋圖標正確顯示。無法使itext矩形與註釋一起正常工作
我正在嘗試爲我的註釋圖標創建一個矩形。我的例子如下:
Rectangle rect = new Rectangle(164, 190, 164, 110);
chunk_text.setAnnotation(PdfAnnotation.createText(writer, rect, "Warning", comments, false, "Comment"));
PdfContentByte pdb = new PdfContentByte(writer);
chunk_free.setAnnotation(PdfAnnotation.createFreeText(writer, rect, comments, pdb));
chunk_popup.setAnnotation(PdfAnnotation.createPopup(writer, rect, comments, false));
但是,圖標未能出現或只是PDF中的一個小點。
我無法找到我做錯了什麼。
它做同樣的事情 – TYD
如果我做writer.addAnnotation一個彈出式註釋
popup
,似乎什麼都沒有。我必須使用大塊出現。 – TYD@TYD *「如果我這樣做了writer.addAnnotation,什麼都不會顯示」* - 在編輯我的答案之前,我使用'writer.addAnnotation'進行了測試,它工作正常。因此,你做了超出你告訴我們的錯誤。 – mkl