Sha256: 082a1b5142d75ec4a72461de07afeaef86b689fc00cfcb9ae5f8492114ea966c

Contents?: true

Size: 1.27 KB

Versions: 2

Compression:

Stored size: 1.27 KB

Contents

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

        slide = pres.getSlides().get_Item(0)
        
        shp3 = slide.getShapes().addAutoShape(Rjb::import('com.aspose.slides.ShapeType').Rectangle, 200, 365, 400, 150)
        shp3.getFillFormat().setFillType(Rjb::import('com.aspose.slides.FillType').NoFill)
        shp3.addTextFrame(" ")
        
        txt_frame = shp3.getTextFrame()
        para = txt_frame.getParagraphs().get_Item(0)
        portion = para.getPortions().get_Item(0)
        portion.setText("Watermark Text Watermark Text Watermark Text")
        
        shp3 = slide.getShapes().addAutoShape(Rjb::import('com.aspose.slides.ShapeType').Triangle, 200, 365, 400, 150)
        slide.getShapes().reorder(1, shp3)

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

        puts "Changed shapes order, 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/Shapes/shapeproperties.rb
asposeslidesjava-0.0.1 lib/asposeslidesjava/Shapes/shapeproperties.rb