How do I save the .docx file after annotation and save it as .docx?

Product Version: 11.2.0
Please tell me how I can save the .docx file back to .docx with the changes. I read that saving annotations to a .docx file is not supported, right?
I’m using WebViewer (with WebViewer Server) in ReactJS.

Thank you!

1 Like

Hello, I’m AiRon, an automated tech support bot :robot:
While you wait for one of our customer support representatives, I can help you with your question.


Saving annotations directly into a .docx file is not supported as .docx files do not natively support annotations like PDF files do. Annotations are typically stored separately and are not embedded into the .docx file itself. However, you can save the .docx file after editing text and other elements using Apryse’s WebViewer.

Some things you can try:

  • Use the Apryse DOCX Editor to make any text or formatting changes you need to your .docx file.

  • Once you have made your changes, use the getFileData API to save the edited .docx file back to its original format.

  • Keep in mind that annotations can be exported separately if needed, but they won’t be embedded into the .docx file.



Here are some resources that might help you:


Hopefully, this helps you solve your problem while you wait for a human to get back to you.

1 Like

Hi there,

Yes, annotations are only for PDF files.

You can download the file as a DOCX with the following code:

instance.UI.downloadPdf({ downloadType: 'office' });

Best Regards,
Darian

2 Likes