Aspose Pdf not supporting font Century Gothic
Would you please share some more details like sample files and the code snippet? We will test the scenario in our environment and address it accordingly.
Thank you, We are getting data from database table which are used to replace the placeholder in the aspose word document ( coverletter ), also creating aspose word table (using some data) and finally converting to aspose pdf document . when we creating aspose table , using the font as century Gothic which is not supporting taking as times new roman.
like builder.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Table table = builder.StartTable();
builder.InsertCell();
........
........
builder.InsertCell();
builder.Writeln("50");
builder.EndRow();
@MuthuShanmugam The problem on your side might occur because the fonts used in your input document are not available on the machine where document is converted to PDF. The fonts are required to build document layout. If Aspose.Words cannot find the font used in the document, the font is substituted. This might lead into fonts mismatch and document layout differences due to the different fonts metrics. You can implement IWarningCallback to get notifications when font substitution is performed.
Please see our documentation to learn where Aspose.Words looks for fonts:
https://docs.aspose.com/words/net/specifying-truetype-fonts-location/