module Asposeslidesjava::AddSmartArt
Public Class Methods
new()
click to toggle source
# File lib/asposeslidesjava/SmartArt/addsmartart.rb, line 3 def initialize() # Creating a SmartArt Shape create_smartart_shape() end
Public Instance Methods
create_smartart_shape()
click to toggle source
# 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