https://bz.apache.org/bugzilla/show_bug.cgi?id=61467

--- Comment #2 from [email protected] ---
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."

-- 
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]

Reply via email to