很晚的答案,但谁知道.. 如果要将一个文档的图片复制到另一个文档,请尝试以下操作:
public void copyAllImages( XWPFDocument sourceDocument, XWPFDocument targetDocument ) {
Map<String, Integer> extractedImages = new HashMap<String, Integer>();
XWPFPictureData pictureData = null;
// 1. Writing all found images to the disk (to the same folder as your source document)
for ( XWPFParagraph par : sourceDocument.getParagraphs() ) {
for ( XWPFRun run : par.getRuns() ) {
for ( XWPFPicture picture : run.getEmbeddedPictures() ) {
pictureData = picture.getPictureData();
byte[] img = pictureData.getData();
String fileName = pictureData.getFileName();
int imageFormat = pictureData.getPictureType();
writeByteArrayToFile( img, fileName );
extractedImages.put( fileName, imageFormat );
}
}
}
// 2. Writing images from the disk to the final document,
// creating 1 new paragraph with 1 run for each image.
for ( String imageFileName : extractedImages.keySet() ) {
XWPFParagraph newParagraph = targetDocument.createParagraph();
XWPFRun newRun = newParagraph.createRun();
copyImageToRun( imageFileName, newRun, extractedImages.get( imageFileName ) );
}
}
private static void writeByteArrayToFile( byte[] byteArray, String fileName ) {
FileOutputStream out = null;
try {
out = new FileOutputStream( new File( fileName ) );
out.write( byteArray );
} catch ( Exception e ) {
e.printStackTrace();
} finally {
try {
out.close();
} catch ( Exception e ) {
e.printStackTrace();
}
}
}
private void copyImageToRun( String imageFileName, XWPFRun run, int format ) {
run.setText( imageFileName );
run.addBreak();
try {
run.addPicture( new FileInputStream( imageFileName ), format, imageFileName,
Units.toEMU( 200 ), Units.toEMU( 200 ) ); // 200x200 pixels
} catch ( Exception e ) {
e.printStackTrace();
}
run.addBreak( BreakType.PAGE );
}
因此,您只需两个 XWPFDocument 对象,将它们传递给第一个函数 (copyAllImages),然后document.write(out)
像往常一样使用保存这些文档。根据您的需要,您还可以添加到第 1 步的代码,该代码将复制段落的所有内容(不仅仅是图像)。可能人们可以跳过将图像写入磁盘,将图片数据直接插入到新创建的运行中。但是,我没有设法让它工作(图像根本没有出现)。但是使用两步法,它最终给出了一个结果。
希望能帮助到你!
PS现在的问题是使用哪个尺寸的图像?有一段时间我只看到了那个addPicture
函数,它要求你传递宽度和高度,而且它可以重新缩放你的图像。所以我们需要一些技巧来提取每个图像在原始文档中的大小(以像素为单位)(不一定是原始图像大小,因为它可以由用户重新缩放)。
灵感来自这里。