Converting a word document to text without saving file

I wanted to know whether the following was possible. I have a word file stored as an image in a database. I want to read out the word file and then convert it to text and write it back into the database. Can the component operate on bytes or the like. I want to be able to do without having to save the file to disk.
thanks

Hi,

Thank you for considering Aspose.

Yes, you should read the document from the database to a stream, load the document from this stream as described here:

https://docs.aspose.com/words/net/create-or-load-a-document/

and save it as text back to the stream as described here:

https://docs.aspose.com/words/net/save-a-document/

and then write the stream back to the database.