https://bz.apache.org/bugzilla/show_bug.cgi?id=61467
--- Comment #3 from Mark Murphy <[email protected]> --- (In reply to chandanam1412 from comment #2) > xWPFParagraph title = doc.createParagraph(); > XWPFRun run = title.createRun(); > run.setText("Fig.1 A Natural Scene"); > run.setBold(true); > title.setAlignment(ParagraphAlignment.CENTER); > > String imgFile = "C:\\WordGenerator\\Congisoft_Logo.png"; > FileInputStream is = new FileInputStream(imgFile); > run.addBreak(); > run.addPicture(is, XWPFDocument.PICTURE_TYPE_JPEG, imgFile, > Units.toEMU(200), Units.toEMU(200)); // 200x200 pixels > is.close(); > > FileOutputStream fos = new FileOutputStream("F:\\test4.docx"); > doc.write(fos); > fos.flush(); > fos.close(); > > > /// > Whole i am trying to open my word document. > Error popup message - ".doc cannot be opened because there are problems with > the contents." So you are wondering why adding a PNG, but telling POI that it is a JPEG produces a corrupted document? -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
