采用C# 语言,aspose.word 的最新版本24.4.0.0 如果将一个10页的Word文档 转为10个png图片?
@iccolor 请使用以下代码:
Document doc = new Document("Input.docx");
ImageSaveOptions options = new ImageSaveOptions(SaveFormat.Png);
for (int i = 0; i < doc.PageCount; i++)
{
options.PageSet = new PageSet(i);
doc.Save($"Input.{i + 1}.png", options);
}