Slide thumbanil: Japanese characters are rendered wrong (C# .NET Docker)

Hi Aspose. I’m using docker with windows container and i have an issue trying to get a thumbnail of a slide with some japanese characters. Could you please advise? Here you can find a source code:
https://drive.google.com/file/d/1UqkJyF4-YJ9F8jhGdXH3NRW5wNTp0zZy/view?usp=sharing
And the image with results:
https://drive.google.com/open?id=1CaDilLy35u93RS6hJNqM3gW30b98qQVy

@obrusentsov,

I have worked with sample project shared and have observed the snapshot. An issue with ID SLIDESNET-41837 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 notified once issue will be fixed.

The issues you have found earlier (filed as SLIDESNET-41837) have been fixed in this update.

Hi, that’s odd but this issue is reproducible on 20.8 version 1.png (25.5 KB)

@obrusentsov

Actually, the container used by youcontains only one font (“Lucida Console”), which does not have the glyphs necessary for displaying. You can try to install the required font in the container, or use the FontsLoader class, as shown below:

FontsLoader.LoadExternalFonts(new string[] { "fonts" });

using (Presentation pres = new Presentation("wrongChar.pptx"))
{
    var slide = pres.Slides[0];
    using (Bitmap bmp = slide.GetThumbnail(1, 1))
    {
        bmp.Save(slide.SlideNumber + ".png");
    }
}

The folder “fonts” in this example must contain “Noto Sans CJK JP” fonts for given presentation.