Word to PDF: Formula symbols Not Converting Properly

During the conversion of a Word file to a PDF format, it seems that certain special symbols are not properly transformed. Here’s an example:" test1.docx" represents the initial document, while “test1.pdf” has been generated through the application of the words-24.3-jdk17.jar module. How to solve this problem?
files:https://drive.google.com/file/d/1D5UpTnQlq-tV38lmo3hBL-35Cp8vRWfd/view?usp=drive_link

@serendipity.zhq

It appears that certain special symbols in your Word document are not converting properly to PDF. This issue can occur due to various reasons, such as font compatibility or unsupported symbols during the conversion process.

To address this, you can try the following steps:

  1. Ensure Fonts are Embedded: Make sure that the fonts used in your Word document are embedded in the PDF. You can do this by setting the EmbedFullFonts property to true in the PdfSaveOptions class.

    Here’s a code snippet to illustrate this:

    Document doc = new Document("test1.docx");
    PdfSaveOptions options = new PdfSaveOptions();
    options.EmbedFullFonts = true; // Embed full fonts
    doc.Save("test1.pdf", options);
    
  2. Check for Unsupported Symbols: Review the symbols in your Word document. If they are not standard or are custom symbols, consider replacing them with more common alternatives that are supported in PDF format.

  3. Explore Additional PdfSaveOptions: You can also investigate other properties in PdfSaveOptions that might enhance the conversion quality, such as OptimizeOutput or Compliance.

If the problem persists, consider checking the Aspose documentation for more detailed options related to PDF conversion or seeking assistance in the Aspose forums for specific cases similar to yours.

No effect, still the same as before

@serendipity.zhq
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-28689

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.