0
votes
0answers
123 views

how to extract text from ppt, pptx file except footer, slide number using apache poi?

I know how to extract text from ppt file using apache poi like this InputStream fis=new FileInputStream("abcd.ppt"); HSLFSlideShow show=new HSLFSlideShow(fis); SlideShow ...
0
votes
1answer
125 views

Apache POI XSSF Adding movie to the slide

I am using the Apache POI library to create powerpoint slides with Java. Our client is interested in embedded text,images and videos.No fancy stuff like charts etc. is needed for now.I understand ...
0
votes
1answer
201 views

Adding shapes to Powerpoint slide using XSLF (Apache POI Project)

The apache POI project explains how to read a shape from a powerpoint slide http://poi.apache.org/slideshow/xslf-cookbook.html#GetShapes However, I can't find any doc on how to add a shape to a ...
0
votes
1answer
262 views

How to add image to PowerPoint ppt table cell using apache POI hslf/xslf?

i want to insert image in one of the tablecell of my ppt table using apache *poi*, other cells have text data. I didn't find any api to write image to tablecell. I tried using draw method of ...
0
votes
0answers
115 views

removing an image from PPT Apache POI

I've run into a situation: XSLFSlide xslfSlide = ppt.createSlide(); for (XSLFShape shape : xslfSlide) { if (shape instanceof XSLFTextShape) { //some ...
0
votes
1answer
203 views

How to replace an image in PPT presentation with Apache POI

I'd like to know, if there any way to replace images in ppt presentaions via Apache POI? I have a template, where I've placed the elements (text fields and images) and I found out how to replace ...
2
votes
1answer
97 views

Programatically Unhide Slides in PPT File

Im writing a little tool that converts slides in PPT Files to pngs, the problem I'm having is with hidden slides. How can I change a slide to be visible in java? Im currently using Apache POI for ...
0
votes
1answer
310 views

JAVA Replace image/picture in Presentation (PPTX) with Apache POI

Just want to know how to draw an Image I have in a buffered image into a PictureShape using POI. I wrote the code below to do what I ask but with no success. Thanks for reading and luckily helping ...
0
votes
0answers
221 views

Java poi / docx4j - Basic PowerPoint Editor

I have decided to TRY to built some sort of PowerPoint/Slide Editor, it will be for personal use and also to help develop mine and whoever help me in some way. I understand that something like this ...
0
votes
2answers
258 views

Merging Powerpoint decks using Apache POI

I have a folder of several ppt decks that I want to combine into one deck. I do not see any easy way to add a slide from deck to another. Is there a function that handles this? Is there another Java ...
0
votes
3answers
382 views

How can i use poi to read ppt?

i find it supports well in Java,i can convert it to jpg; but when i use it in Android,bufferimage,graphics,imageio are not support becuase android drop the java.awt so if i want to use poi in ...
1
vote
2answers
453 views

Best practice generating word and powerpoint documents using Java

I have a word document in the format of a docx, created in Word 2007. I need to open this document and at certain places in the document add Text, Images and tables. I also need to do the same thing ...
0
votes
1answer
277 views

PPT to PNG convesion with Apache POI

By following the example provided at http://poi.apache.org/slideshow/how-to-shapes.html i got the conversion to work. FileInputStream is = new FileInputStream("slideshow.ppt"); SlideShow ppt = new ...
2
votes
1answer
546 views

How to show ppt in android using Apache POI?

I am trying to show the PPT files in android. I started with Apache POI, bcoz I haven't found any free open source jar. I starting with converting ppt slides to images referring this link Export ...
0
votes
1answer
185 views

Not able to initialize org.apache.poi.xslf.usermodel.XMLSlideShow in coldfusion

<cfscript> filepath = ExpandPath("./1.ppt"); fis = CreateObject( "java", "java.io.FileInputStream" ).init(filepath); //initialize slideshow object with input stream src = ...
0
votes
1answer
362 views

Creating tables in a pptx using Apache POI

I'm trying to create some slides with Apache POI and everything is OK, except tables. I use the same code as one of their tutorials and the result is (in my code and excuting the Tutorial) a ...
0
votes
1answer
174 views

How to embed an avi video inside Powerpoint ppt file using Apache POI HSLF?

Tried this: int idx4 = ppt.addMovie(new File("Animation.avi").getCanonicalPath(), MovieShape.MOVIE_AVI); MovieShape pict4 = new MovieShape(idx4, idx4); pict4.setAnchor(new java.awt.Rectangle(100, ...
1
vote
4answers
1k views

How to Convert a ppt file into pdf file in Java?

I want to convert an MS powerpoint (ppt) document to pdf. I searched some jars like officetools.jar, but that requires purchase. Is there any way. can we convert it through itext and apache POI like ...
0
votes
2answers
446 views

how to split long tables across multiple slides in ppt using apache POI

I am trying to export tables to PPT using POI. But my tables can contain n number of rows. The problem is that the entire table is displayed in the same slide. I want to split the table across slides ...
1
vote
1answer
286 views

Exporting PowerPoint as JPG end up with blurred texts

I'm developing a tool for exporting slides from a PowerPoint presentation to images and do some processing afterwards. Currently I'm using Microsoft.Office.Interop.PowerPoint package to do the job. ...
2
votes
2answers
904 views

Apache poi slide show to pdf conversion

Is there any way to convert generated .ppt file using apache poi to .pdf file? OR Any way to convert PPT file to PDF file using JAVA?
0
votes
1answer
598 views

How to create PowePoint presentation in OpenXML format with Apache Poi and XSLF?

If I go to Apache POI XSLF there should be samples for both OLE2 and OpenXML specs, but there are only the OLE2 based Horrible Slide Layout Format examples. Could please anybody help me out with XML ...
3
votes
1answer
626 views

Apache POI Powerpoint Alternative

I have an application which currently uses the Apache POI libraries to produce Microsoft Powerpoint documents. I need to move this application into a more restricted environment which doesn't allow ...
2
votes
1answer
2k views

Converting ppt to png using Apache poi

Hello I am trying to use the Apache Poi framework to convert each slide of a ppt to an individual png. The problem is that some slides are deformed. For instance there is a slide where the background ...
2
votes
1answer
1k views

Get background image from PowerPoint Slide using Java

I need to get the background image from a PowerPoint slide using java. I am aware of the Apache POI project. I can find material for getting text and shapes from the slides, but not the actual ...
0
votes
1answer
914 views

Extracting images from pptx with apache poi

I'm trying to extract slides from a ppt file with apache poi, there is no problem in that, but now i intend to open pptx files and do the same, does anyone knows how to?? this is the code to extract ...
0
votes
1answer
480 views

java.awt , swing, and APACHE POI for Power Point Presentation

I'm trying to use SlideShow to create presentation... http://poi.apache.org/apidocs/org/apache/poi/hslf/usermodel/SlideShow.html and I see some uses of java.awt classes in the examples. My ...
2
votes
1answer
3k views

Merging Cells with Apache POI for PowerPoint (HSLF)

Hi I was wondering if it was possible to merge cells using Table/TableCell for Powerpoint (like colspan in HTML), similar to this example for Excel ...
1
vote
3answers
913 views

Does anyone have an example of Apache POI converting PPTX to PNG

Does anyone know of a good example of converting a PPTX powerpoint presentation to some form of image? PNG/GIF/etc? I can do it for a PPT but looking for a PPTX conversion example Thanks
2
votes
1answer
657 views

Title in POI created PowerPoint slide not preserving formatting when copying

I'm creating a PowerPoint slide using POI and I need to be able to copy and paste it to another presentation. I'm running into a problem where the title of the generated slide adopts a bulleted list ...
5
votes
0answers
353 views

Embedding HSSF(excel) into HSLF(ppt) using apache poi

I want to embed the excel sheet into presentation(PPT) using apache poi. how can we do this? If anyones knows, please help me.
1
vote
2answers
2k views

Problem with using APACHE-POI to convert PPT to Image

I got a problem when I try to use Apache POI project to convert my PPT to Images.My code as follows: FileInputStream is = new FileInputStream("test.ppt"); SlideShow ppt = new SlideShow(is); ...