チャートのエクスポート

チャート画像の取得

Aspose.Slides for Python via .NETは特定のチャートの画像を抽出するサポートを提供します。以下にサンプル例を示します。

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

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