feiyu02
2024-08-13 b8cc591541b88dd2bb93f111f8e8075842dce7ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
 *  Copyright 2007-2008, Plutext Pty Ltd.
 *   
 *  This file is part of docx4j.
 
    docx4j is licensed under the Apache License, Version 2.0 (the "License"); 
    you may not use this file except in compliance with the License. 
 
    You may obtain a copy of the License at 
 
        http://www.apache.org/licenses/LICENSE-2.0 
 
    Unless required by applicable law or agreed to in writing, software 
    distributed under the License is distributed on an "AS IS" BASIS, 
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
    See the License for the specific language governing permissions and 
    limitations under the License.
 
 */
 
 
package cn.flightfeather.supervision.docx4j.simpleDemo;
 
import org.docx4j.dml.wordprocessingDrawing.Inline;
import org.docx4j.jaxb.Context;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.openpackaging.parts.WordprocessingML.BinaryPartAbstractImage;
 
import java.io.File;
 
/**
 * Examples of adding images to a docx
 *
 * @author Jason Harrop
 */
public class ImageAdd {
 
    public static void main(String[] args) throws Exception {
 
        WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.createPackage();
 
        // The image to add
        File file = new File(System.getProperty("user.dir")
                + "/src/main/resources/static/images/greentick.png");
 
        // Our utility method wants that as a byte array
        java.io.InputStream is = new java.io.FileInputStream(file);
        long length = file.length();
        // You cannot create an array using a long type.
        // It needs to be an int type.
        if (length > Integer.MAX_VALUE) {
            System.out.println("File too large!!");
        }
        byte[] bytes = new byte[(int) length];
        int offset = 0;
        int numRead = 0;
        while (offset < bytes.length
                && (numRead = is.read(bytes, offset, bytes.length - offset)) >= 0) {
            offset += numRead;
        }
        // Ensure all the bytes have been read in
        if (offset < bytes.length) {
            System.out.println("Could not completely read file " + file.getName());
        }
        is.close();
 
        String filenameHint = null;
        String altText = null;
        int id1 = 0;
        int id2 = 1;
 
 
        // Image 1: no width specified
        org.docx4j.wml.P p = newImage(wordMLPackage, bytes,
                filenameHint, altText,
                id1, id2);
        wordMLPackage.getMainDocumentPart().addObject(p);
 
        // Image 2: width 3000
        org.docx4j.wml.P p2 = newImage(wordMLPackage, bytes,
                filenameHint, altText,
                id1, id2, 3000);
        wordMLPackage.getMainDocumentPart().addObject(p2);
 
        // Image 3: width 6000
        org.docx4j.wml.P p3 = newImage(wordMLPackage, bytes,
                filenameHint, altText,
                id1, id2, 6000);
        wordMLPackage.getMainDocumentPart().addObject(p3);
 
 
        // Now save it
        wordMLPackage.save(new File(System.getProperty("user.dir") + "/OUT_AddImage.docx"));
 
    }
 
    /**
     * Create image, without specifying width
     */
    public static org.docx4j.wml.P newImage(WordprocessingMLPackage wordMLPackage,
                                            byte[] bytes,
                                            String filenameHint, String altText,
                                            int id1, int id2) throws Exception {
 
        BinaryPartAbstractImage imagePart = BinaryPartAbstractImage.createImagePart(wordMLPackage, bytes);
 
        Inline inline = imagePart.createImageInline(filenameHint, altText,
                id1, id2, false);
 
        // Now add the inline in w:p/w:r/w:drawing
        org.docx4j.wml.ObjectFactory factory = Context.getWmlObjectFactory();
        org.docx4j.wml.P p = factory.createP();
        org.docx4j.wml.R run = factory.createR();
        p.getContent().add(run);
        org.docx4j.wml.Drawing drawing = factory.createDrawing();
        run.getContent().add(drawing);
        drawing.getAnchorOrInline().add(inline);
 
        return p;
 
    }
 
    /**
     * Create image, specifying width in twips
     */
    public static org.docx4j.wml.P newImage(WordprocessingMLPackage wordMLPackage,
                                            byte[] bytes,
                                            String filenameHint, String altText,
                                            int id1, int id2, long cx) throws Exception {
 
        BinaryPartAbstractImage imagePart = BinaryPartAbstractImage.createImagePart(wordMLPackage, bytes);
 
        Inline inline = imagePart.createImageInline(filenameHint, altText,
                id1, id2, cx, false);
 
        // Now add the inline in w:p/w:r/w:drawing
        org.docx4j.wml.ObjectFactory factory = Context.getWmlObjectFactory();
        org.docx4j.wml.P p = factory.createP();
        org.docx4j.wml.R run = factory.createR();
        p.getContent().add(run);
        org.docx4j.wml.Drawing drawing = factory.createDrawing();
        run.getContent().add(drawing);
        drawing.getAnchorOrInline().add(inline);
 
        return p;
 
    }
}