Extra Space Is Added after Apostrophe when Converting Slides to Images in C#

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);
        }
    }
}

@drickey,

I have observed the issue shared by you and have been able to observe the issue specified. An issue with ID SLIDESNET-39700 has been created in our issue tracking system to further investigate and resolve the issue. This thread has been linked with the issue so that you may be automatically notified once the issue will be fixed.

The issues you found earlier (filed as SLIDESNET-39700) have been fixed in Aspose.Slides for .NET 24.10 (ZIP, MSI, NuGet, Cross-platform).
You can check all fixes on the Release Notes page.
You can also find the latest version of our library on the Product Download page.