3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/asposeslidesjava/Shapes/rotatingshapes.rb', line 3
def initialize()
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/Shapes/'
pres = Rjb::import('com.aspose.slides.Presentation').new
sld = pres.getSlides().get_Item(0)
shp = sld.getShapes().addAutoShape(Rjb::import('com.aspose.slides.ShapeType').Rectangle, 50, 150, 75, 150)
shp.setRotation(90)
save_format = Rjb::import('com.aspose.slides.SaveFormat')
pres.save(data_dir + "RectShpRot.pptx", save_format.Pptx)
puts "Rotated shape, please check the output file."
end
|