Docx4j - 文档中的图像

时间:2013-04-05 06:43:17

标签: java ms-word docx4j

我们如何从docx4j中删除图像。

假设我有10张图片,我想用自己的字节数组/二进制数据替换8张图片,我想删除剩余的2张。

我也无法找到图像。

以某种方式用文件替换文档中的文本占位符是否可行?

2 个答案:

答案 0 :(得分:2)

请参阅此帖:http://vixmemon.blogspot.com/2013/04/docx4j-replace-text-placeholders-with.html

for(Object obj : elemetns){
   if(obj instanceof Tbl){
      Tbl table = (Tbl) obj;
         List rows = getAllElementFromObject(table, Tr.class);
            for(Object trObj : rows){
         Tr tr = (Tr) trObj;
         List cols = getAllElementFromObject(tr, Tc.class);
         for(Object tcObj : cols){
            Tc tc = (Tc) tcObj;
            List texts = getAllElementFromObject(tc, Text.class);
            for(Object textObj : texts){
              Text text = (Text) textObj;
                     if(text.getValue().equalsIgnoreCase("${MY_PLACE_HOLDER}")){
                        File file = new File("C:\\image.jpeg");
                 P paragraphWithImage = addInlineImageToParagraph(createInlineImage(file));
                        tc.getContent().remove(0);

                        tc.getContent().add(paragraphWithImage);
              }
                  }
           System.out.println("here");
         }
           }
        System.out.println("here");
    }
}

wordMLPackage.save(new java.io.File("C:\\result.docx"));

答案 1 :(得分:1)

有关查找内容的两种方法(XPath或非XPath遍历),请参阅docx4j checking checkboxes

VariableReplace允许您替换文本占位符,但不能替换图像。我认为可能存在代码浮动(在docx4j论坛中?),这扩展了它来做到这一点。

但我建议你使用内容控制数据绑定。见how to create a new word from template with docx4j

您可以在XML数据中使用base64编码图像,docx4j和/或Word将完成其余的工作。