Module: Asposeslidesjava::PptToPptx

Defined in:
lib/asposeslidesjava/Presentation/ppttopptx.rb

Instance Method Summary collapse

Instance Method Details

#initializeObject



3
4
5
6
7
8
9
10
11
12
13
14
# File 'lib/asposeslidesjava/Presentation/ppttopptx.rb', line 3

def initialize()
    data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
            
    # Instantiate a Presentation object that represents a PPTX file
    pres = Rjb::import('com.aspose.slides.Presentation').new(data_dir + "Presentation1.ppt")

    # Saving the PPTX presentation to PPTX format
    save_format = Rjb::import('com.aspose.slides.SaveFormat')
    pres.save(data_dir + "Aspose.pptx", save_format.Pptx)

    puts "Document has been converted, please check the output file."
end