Export Chart

Contents
[ ]

Get Chart Image

Aspose.Slides for Python via .NET provides support for extracting image of specific chart. Below sample example is given. 

import aspose.slides.charts as charts
import aspose.slides as slides

with slides.Presentation() as pres:
	chart = pres.slides[0].shapes.add_chart(charts.ChartType.CLUSTERED_COLUMN, 50, 50, 600, 400)
	img = chart.get_image()
	img.save("image.png", slides.ImageFormat.PNG)