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 2017/08/29 08:48:37 UTC

[Bug 61467] New: 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

            Bug ID: 61467
           Summary: Created word file using apache poi api is corrupted
                    after adding the image to word doc.
           Product: POI
           Version: 3.16-FINAL
          Hardware: PC
            Status: NEW
          Severity: major
          Priority: P2
         Component: XWPF
          Assignee: dev@poi.apache.org
          Reporter: kiran.tl@thomsonreuters.com
  Target Milestone: ---

Hi,

I have used apache poi 3.16 to create word document. whenever I add .tif images
to word document using run.addPicture(..) provided by poi 3.16 api. When
generated .doc or .docx is trying to open it throws below error message.

Error popup message - "XX.doc cannot be opened because there are problems with
the contents."

Looks like word file is corrupted.

Can you please take a look and help me about this issue.

Also please let me know if you need any additional information.

Thanks in advance !

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


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

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=61467

kiran.tl@thomsonreuters.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kiran.tl@thomsonreuters.com
                 OS|                            |All

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


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

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=61467

Dominik Stadler <do...@gmx.at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO

--- Comment #1 from Dominik Stadler <do...@gmx.at> ---
Can you provide some self-sufficient sample-code which allows to reproduce the
problem?

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


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

Posted by bu...@apache.org.
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


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

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=61467

--- Comment #3 from Mark Murphy <jm...@apache.org> ---
(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: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org