Hi,
Is there a possibility to save each page as image on such platforms like:
- macOS (Xamarin.Mac),
- iOS (Xamarin.iOS),
- Android (Xamarin.Android) ?
Generally speaking, I need to have similar thing for such documents like:
- Office documents (.doc, .docx, .potx, .pptx, .xls, .xlsx),
- Wordpad document (.rtf),
- Pdf documents (.pdf).
Using Aspose.Word I was able to save selected page (Xamarin.Mac):
var doc = new Aspose.Words.Document(filePath);
var layoutCollector = new LayoutCollector(doc);
doc.UpdatePageLayout();
var options = new ImageSaveOptions(SaveFormat.Jpeg);
options.PageIndex = 0;
var res = doc.Save(singlePageFilePath, options);
Is there similar solution for:
- Aspose.PDF,
- Aspose.Slides ?