Incorrect render of text with font from Aptos family

@Gradlon

Please try the option ImageType = ImageType.OfficeCompatibleEmf, although the generated Emf image still has some issues in Image Viewer, but it displays good in PPT(which is your case). Also, you can try to set the option HorizontalResolution and VerticalResolution, it will improve the image quality.

ImageOrPrintOptions options = new ImageOrPrintOptions()
{
    ImageType = ImageType.OfficeCompatibleEmf,
    OnlyArea = true,
    Transparent = true,
    DefaultFont = "Arial",
    HorizontalResolution = 600,
    VerticalResolution = 600,
};

@peyton.xu ,

This improves a lot! It looks nice now with this option.

Just to satisfy my curiosity, why the ImageType.Emf failed to render correctly the Aptos font when ImageType.OfficeCompatibleEmf renders it correctly?

Anyway, thanks for your support!

@Gradlon ,

With ImageType.OfficeCompatibleEmf option, it optimizes the text rendering records in Emf image that makes the text looks better in Excel/PPT/Word.

1 Like

Thanks for the response.

You may close this ticket and consider it solved.

Thanks for your support!

@Gradlon,

We are glad to know that your issue has been resolved using the suggested option. We have closed the topic now. If you have any additional questions or comments, please do not hesitate to reach out to us again.