Hello,
I have an issue when I want to convert DOCX file with simple table inside to PDF file. File is successfully converted and saved to PDF but the table borders are blur in the new PDF document. We are currently using Aspose.Words v16.7.0 but I have tried with newest version v19.4.0 and there is the same problem.
This is a simplified example:
` public class Program
{
public static void Main(string[] args)
{
Document document = new Document(@"..\Resources\Table_border_issue.docx");
document.Save(@"..Resources\Table_border_issue.pdf");
}
}`
Best regards,
Nemanja