Apache POI Powerpoint Image To set image in powerpoint slide, we can use addPicture() and createPicture() methods of POI API. In this…
apache poi features
-
-
Apache POI Word Table To create table in Word document, we can use XWPFTable class located into org.apache.poi.xwpf.usermodel.XWPFTable package. Apache POI added…
-
Apache POI Excel Header Apache POI allows us to set header for our excel document. It provides getHeader() method of Sheet interface…
-
Apache POI Page Size We can get and set page size of the powerpoint page. To get the page size getPageSize() method…
-
Apache POI Architecture Apache POI consists of various components and make an architecture to form a working system. For example, POIFS and…
-
Apache POI Excel Image In Apache POI, images are part of the drawing support. To add an image just call createPicture() on…
-
Apache POI Reorder Slide To reorder the powerpoint slides, Apache POI provides a method setSlideOrder(). This method switched slides by slide’s positions.…
-
Apache POI Cell Multiple Styles To apply multiple styles and text formatting to a cell, Apache POI provides CellStyle feature. We can…
-
Apache POI Workbook Sheet To create a sheet in excel, POI provides a method createSheet() which creates a new sheet each time…
-
Apache POI Slide Layout We can set slide layout, it’s title and content as well. In the following example, we are creating…