I’ve got this pdf made with the Open Sans font. It only has the word “Doesn’t”. You can see that it’s adding in an extra tab character or something when Aspose converts it to a .png. I’m using the latest .net version and I’m trying to convert the attached pptx.
output-1.png (26.4 KB)
apostrophe open sans issue.zip (24.0 KB)
In case it matters, this is the code used to convert the slide.
if (pres.Slides?.Any() == true)
{
int pageNumber = 0;
foreach (ISlide slide in pres.Slides)
{
pageNumber++;
using (Bitmap bmp = slide.GetThumbnail(3, 3))
{
bmp.Save("output-" + pageNumber + ".png", System.Drawing.Imaging.ImageFormat.Png);
}
}
}