You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2018/03/22 11:42:57 UTC

[Bug 61467] Created word file using apache poi api is corrupted after adding the image to word doc.

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

--- Comment #2 from chandanam1412@gmail.com ---
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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org