Apache PDFBoxを使用して、既存の PDF から "Tj" 演算子を読み込もうとしました。 このタスクを完全に達成したとき、いくつかの文字を置き換えようとしました。たとえば、(hello world)Tj を含む PDF ドキュメントを考えてみましょう。このコードは "hello" を "hi123" に置き換えます。したがって、変更されたドキュメントは (hello world)Tj の代わりに (hi123 world)Tj を含むようになります。
私の大きな問題は、このコードを編集して「こんにちは」をテキスト レンダリング モード 3 (つまり、テキスト レンダリング モードを「非表示」) にする方法です。したがって、「hello」を「hi123」に置き換えたくはありませんが、「hello」を非表示 (モードを非表示) にします。したがって、変更されたドキュメントには、「hello」が見えなくなった「world」だけが含まれます。
これまでの私のコード:
public class Test1 {
private static Test1 tes;
private static final String src="...";
private static PDPageContentStream content;
private static PDType1Font font;
public static void CreatePdf(String src) throws IOException, COSVisitorException{
PDRectangle rec= new PDRectangle(400,400);
PDDocument document= null;
document = new PDDocument();
PDPage page = new PDPage(rec);
document.addPage(page);
PDDocumentInformation info=document.getDocumentInformation();
info.setAuthor("PdfBox");
info.setCreator("Pdf");
info.setSubject("Stéganographie");
info.setTitle("Stéganographie dans les documents PDF");
info.setKeywords("Stéganographie, pdf");
content= new PDPageContentStream(document, page);
font= PDType1Font.HELVETICA;
String texte="hello world";
content.beginText();
content.setFont(font, 12);
content.moveTextPositionByAmount(15, 385);
// content.appendRawCommands("3 Tr");
content.drawString(texte);
content.endText();
content.close();
document.save("doc.pdf");
document.close();
}
public static void main(String[] args) throws IOException, COSVisitorException {
tes= new Test1();
tes.CreatePdf(src);
PDDocument doc ;
doc = PDDocument.load("doc.pdf");
List pages = doc.getDocumentCatalog().getAllPages();
for (int i = 0; i < pages.size(); i++) {
PDPage page = (PDPage) pages.get(i);
PDStream contents = page.getContents();
PDFStreamParser parser = new PDFStreamParser(contents.getStream());
parser.parse();
List tokens = parser.getTokens();
for (int j = 0; j < tokens.size(); j++)
{
Object next = tokens.get(j);
if (next instanceof PDFOperator) {
PDFOperator op = (PDFOperator) next;
// Tj and TJ are the two operators that display strings in a PDF
if (op.getOperation().equals("Tj"))
{
// Tj takes one operator and that is the string
// to display so lets update that operator
COSString previous = (COSString) tokens.get(j - 1);
String string = previous.getString();
System.out.println(string);
//Word you want to change. Currently this code changes word "hello" to "hi123"
string = string.replaceFirst("hello", "hi123");
previous.reset();
previous.append(string.getBytes("ISO-8859-1"));
}
}
}
// now that the tokens are updated we will replace the page content stream.
PDStream updatedStream = new PDStream(doc);
OutputStream out = updatedStream.createOutputStream();
ContentStreamWriter tokenWriter = new ContentStreamWriter(out);
tokenWriter.writeTokens(tokens);
page.setContents(updatedStream);
}
doc.save("a.pdf");
doc.close();
}
}