Sha256: ac4c69cddfface42fb8f7deaf6990c1988fff026814f39011d9222b440da63ee
Contents?: true
Size: 970 Bytes
Versions: 2
Compression:
Stored size: 970 Bytes
Contents
module Asposeslidesjava module AddSlides def initialize() data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/' # Instantiate Presentation class that represents the presentation file pres = Rjb::import('com.aspose.slides.Presentation').new # Instantiate SlideCollection calss slides = pres.getSlides() i = 0 while i < pres.getLayoutSlides().size() # Add an empty slide to the Slides collection slides.addEmptySlide(pres.getLayoutSlides().get_Item(i)) i +=1 end #Do some work on the newly added slide # Saving the presentation save_format = Rjb::import('com.aspose.slides.SaveFormat') pres.save(data_dir + "EmptySlide.pptx", save_format.Pptx) puts "Document has been created, please check the output file." end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
asposeslidesjava-0.0.2 | lib/asposeslidesjava/Slides/addslides.rb |
asposeslidesjava-0.0.1 | lib/asposeslidesjava/Slides/addslides.rb |