我已经使用Java POI 3.7创建了一个简单的docx-Document。XWPF。然后,我使用XWPFDocument.addpicture(byte[] arg0, int arg1)方法添加了一张图片。
XWPFDocument docx = new XWPFDocument();
XWPFParagraph par = docx.createParagraph();
XWPFRun run = par.createRun();
run.setText("Hello, World. This is my first java generated docx-file. Have fun.");
run.setFontSize(13);
InputStream pic = new FileInputStream("logo.jpg");
byte [] picbytes = IOUtils.toByteArray(pic);
docx.addPicture(picbytes, Document.PICTURE_TYPE_JPEG);由于docx的文件大小增加,图片被“物理”添加到文档中;但它在MS Word中根本不显示。似乎文档中缺少对图片的引用。
做这个的方法是什么呢?如何使用apache POI进行图片处理?在web上有更多教程的地方,几乎没有XWPF的文档或教程,XWPF解释了段落、运行等的处理。
我在这里找到的唯一一件事是:https://issues.apache.org/bugzilla/show_bug.cgi?id=49765,但它一点帮助都没有。
在此之前,非常感谢您。
发布于 2013-07-25 13:39:11
我知道这篇文章很老了,但我还是把答案贴出来了,这样所有正在寻找这个答案的人都可以使用它。为了在word文档中插入图片,你必须编写两个程序。第一个问题是:
package org.word.POI;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.xwpf.usermodel.Document;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
/*
Romesh Soni
soni.romesh@gmail.com
*/
public class TestCustom
{
public static void main(String []a) throws FileNotFoundException, IOException, InvalidFormatException
{
CustomXWPFDocument document = new CustomXWPFDocument(new FileInputStream(new File("C:\\Users\\amitabh\\Documents\\Apache POI\\Word File\\new.doc")));
FileOutputStream fos = new FileOutputStream(new File("C:\\Users\\amitabh\\Documents\\Apache POI\\Word File\\new.doc"));
String blipId = document.addPictureData(new FileInputStream(new File("C:\\Users\\amitabh\\Pictures\\pics\\3.jpg")), Document.PICTURE_TYPE_JPEG);
System.out.println(document.getNextPicNameNumber(Document.PICTURE_TYPE_JPEG));
//System.out.println(document.getNextPicNameNumber(Document.PICTURE_TYPE_JPEG));
document.createPicture(blipId,document.getNextPicNameNumber(Document.PICTURE_TYPE_JPEG), 500, 500);
document.write(fos);
fos.flush();
fos.close();
}
}现在,我在这段代码中使用了"CustomeXwPFDocument“,您将无法通过任何jar文件获得任何导入,因此您必须在包中添加另一个.java类。"CustomXWPFDocument“类的代码是这样的:
package org.word.POI;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlToken;
import org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps;
import org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D;
import org.openxmlformats.schemas.drawingml.x2006.wordprocessingDrawing.CTInline;
import java.io.IOException;
import java.io.InputStream;
public class CustomXWPFDocument extends XWPFDocument
{
public CustomXWPFDocument(InputStream in) throws IOException
{
super(in);
}
public void createPicture(String blipId,int id, int width, int height)
{
final int EMU = 9525;
width *= EMU;
height *= EMU;
//String blipId = getAllPictures().get(id).getPackageRelationship().getId();
CTInline inline = createParagraph().createRun().getCTR().addNewDrawing().addNewInline();
String picXml = "" +
"<a:graphic xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\">" +
" <a:graphicData uri=\"http://schemas.openxmlformats.org/drawingml/2006/picture\">" +
" <pic:pic xmlns:pic=\"http://schemas.openxmlformats.org/drawingml/2006/picture\">" +
" <pic:nvPicPr>" +
" <pic:cNvPr id=\"" + id + "\" name=\"Generated\"/>" +
" <pic:cNvPicPr/>" +
" </pic:nvPicPr>" +
" <pic:blipFill>" +
" <a:blip r:embed=\"" + blipId + "\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"/>" +
" <a:stretch>" +
" <a:fillRect/>" +
" </a:stretch>" +
" </pic:blipFill>" +
" <pic:spPr>" +
" <a:xfrm>" +
" <a:off x=\"0\" y=\"0\"/>" +
" <a:ext cx=\"" + width + "\" cy=\"" + height + "\"/>" +
" </a:xfrm>" +
" <a:prstGeom prst=\"rect\">" +
" <a:avLst/>" +
" </a:prstGeom>" +
" </pic:spPr>" +
" </pic:pic>" +
" </a:graphicData>" +
"</a:graphic>";
//CTGraphicalObjectData graphicData = inline.addNewGraphic().addNewGraphicData();
XmlToken xmlToken = null;
try
{
xmlToken = XmlToken.Factory.parse(picXml);
}
catch(XmlException xe)
{
xe.printStackTrace();
}
inline.set(xmlToken);
//graphicData.set(xmlToken);
inline.setDistT(0);
inline.setDistB(0);
inline.setDistL(0);
inline.setDistR(0);
CTPositiveSize2D extent = inline.addNewExtent();
extent.setCx(width);
extent.setCy(height);
CTNonVisualDrawingProps docPr = inline.addNewDocPr();
docPr.setId(id);
docPr.setName("Picture " + id);
docPr.setDescr("Generated");
}
}此程序使用POI 3.9 jars。最好的网址是:- http://www.apache.org/dyn/closer.cgi/poi/release/bin/poi-bin-3.9-20121203.zip
现在你已经准备好飞行了。祝你好运。
发布于 2013-08-24 04:29:35
优雅的解决方案即将问世,请查看:https://issues.apache.org/bugzilla/show_bug.cgi?id=55476
您可以等待我的补丁被接受并发布,或者尝试将补丁应用于最新的POI结帐(http://poi.apache.org/subversion.html,只读访问链接将起作用),并从源代码构建POI。
tsd.tom建议的方法将会起作用:
XWPFParagraph par = docx.createParagraph();
XWPFRun run = par.createRun();
run.addPicture(pic, XWPFDocument.PICTURE_TYPE_JPEG, "logo.JPG",300,300); 发布于 2012-07-12 20:44:54
您提供的bug链接实际上有一个有效的解决方案:https://issues.apache.org/bugzilla/show_bug.cgi?id=49765#c15
它需要一些技巧,但我正在使用它,它肯定有效!
https://stackoverflow.com/questions/7674115
复制相似问题