Hi,
I’m using latest version of Aspose Slides to convert some pptx, pptm file to tiff image format on Linux, but they are always throw exception and stack trace like this:
Exception : Not implemented.
Stack trace:
at System.Drawing.SafeNativeMethods.Gdip.CheckStatus(Int32 status)
at System.Drawing.Image.SaveAdd(EncoderParameters encoderParams)
at .(Presentation , Stream , Int32[] , TiffOptions , InterruptionToken )
at Aspose.Slides.Presentation.Save(Stream stream, SaveFormat format, ISaveOptions options)
at Aspose.Slides.Presentation.Save(String fname, SaveFormat format)
Sample code:
using(var presentation = new Presentation(inFile))
{
presentation.Save(outFile, SaveFormat.Tiff);
retValue = Constant.SUCCESS;
}
Please help me check this.
Thank you.