Hi,
GetThumbnail of Slide contain Hebrew text in SmartArt create the text in wrong order.
The text is OK in PDF.
using (Presentation pr = new Presentation(Path.Combine(SampleFiles,
“ReverseHebrew.pptx”)))
{
var bm = pr.Slides[0].GetThumbnail(1f,1f);
bm.Save(Path.Combine(SampleFiles, “ReverseHebrew.pptx.png”),System.Drawing.Imaging.ImageFormat.Png);
pr.Save(Path.Combine(SampleFiles, “ReverseHebrew.pptx.pdf”),Aspose.Slides.Export.SaveFormat.Pdf);
}
}
ReverseHebrew.pptx.zip (74.7 KB)