我有一个包含文字,图片等的doc文件。
现在我想读取该doc文件并将这些内容写入pdf文件。我的DOC文件和新生成的PDF文件必须相同。
我再说一遍,我的DOC文件包含(“图像和文本”数据)。
如果有人有此代码,请帮助我。
非常感谢您的时间..
答案 0 :(得分:0)
您可以使用此代码从文档中获取所有图像。
HWPFDocument doc = new HWPFDocument(fs);// fs is the object of POIFSFileSystem
Range range = doc.getRange();
PicturesTable pt = doc.getPicturesTable();
List<Picture> listPic = pt.getAllPictures();
Picture pic = listPic.get(0);// iterate listPic upto its size to get images
byte[] picArr = pic.getContent();