Module: Asposeslidesjava::AddSmartArt

Defined in:
lib/asposeslidesjava/SmartArt/addsmartart.rb

Instance Method Summary collapse

Instance Method Details

#create_smartart_shapeObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/asposeslidesjava/SmartArt/addsmartart.rb', line 8

def create_smartart_shape()
    data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
            
    # Create an instance of Presentation class
    pres = Rjb::import('com.aspose.slides.Presentation').new

    # Get the first slide
    slide = pres.getSlides().get_Item(0)

    # Add Smart Art Shape
    smart = slide.getShapes().addSmartArt(0, 0, 400, 400, Rjb::import('com.aspose.slides.SmartArtLayoutType').BasicBlockList)

    # Write the presentation as a PPTX file  
    pres.save(data_dir + "SimpleSmartArt.pptx", Rjb::import('com.aspose.slides.SaveFormat').Pptx)

    puts "Created smartart shape, please check the output file."
end

#initializeObject



3
4
5
6
# File 'lib/asposeslidesjava/SmartArt/addsmartart.rb', line 3

def initialize()
    # Creating a SmartArt Shape
    create_smartart_shape()
end