Use Aopose.Word to convert Word to PDF, the conversion results and the tone of inconsistency

this is word:
TS0910Temp2_Templete.docx (23.2 KB)
this is convert result:
TS0910Temp2_9_Sep_18_2024.pdf (81.6 KB)

this is key code:

public static bool ConvertDocumentToPDF(string docPath, string pdfPath, string title = "")
{
    var doc = new Document(docPath);
    if (!string.IsNullOrEmpty(title))
    {
        PdfSaveOptions options = new PdfSaveOptions();
        options.CustomPropertiesExport = PdfCustomPropertiesExport.Standard;
        doc.BuiltInDocumentProperties.Title = title;
        doc.Save(pdfPath, options);
    }
    else
    {
        doc.Save(pdfPath);
    }
    return true;
}

@LightWcz
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): WORDSNET-27387

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.