Using Aspose in Azure AppService

Hello,
We are using Aspose.Word and Aspose.PDf in Azure AppService. We notice there is an article talking about privilege and fonts in Azure environment.

Can anyone provide or point to me any documentation/sample regarding this?

Thanks,
Harry

Hello,
We are using Aspose.Word and Aspose.PDf in Azure AppService. We notice there is an article talking about privilege and fonts in Azure environment.

Can you provide or point to me any documentation/sample regarding this?

Thanks,
Harry

@qxie777,

Regarding Aspose.Words, please refer to the following articles:

How Aspose.Words Uses True Type Fonts
How to Receive Notification of Missing Fonts and Font Substitution during Rendering

Regarding Aspose.PDF, please ensure respective fonts are installed or you may specify the custom font directory and need to add a folder in font folder lists as follows:

// connect custom font directory
FolderFontSource fs = new FolderFontSource(@"path\to\my\folder");
FontRepository.Sources.Add(fs);

You may also Load Font from Stream as per your requirement. Please also post this query in Aspose.PDF forum where you will be guided further.