When exporting group shapes to SVG/PNG/JPG the sizing/placement of some elements is wrong.
import aspose.slides as slides
shapeno = 0
with slides.Presentation("testshapeoutput.pptx") as pres:
for slide in pres.slides:
for shape in slide.shapes:
shapeno = shapeno + 1
with open("shape"+str(shapeno)+".svg", "wb") as stream:
shape.write_as_svg(stream)
testshapeoutput.zip (49.1 KB)