Edit word and open in browser

Hi,
Can I use your product to highlight specific words in word documents and then open it in an web browser

thanks

This message was posted using Banckle Live Chat 2 Forum

Hi,

Thanks for your interest in Aspose.Words. Please refer to the following article:

How to Find and Highlight Text

Secondly, Aspose provides various types of class libraries and with these APIs you can programmatically generate, modify, convert, render and print documents without utilizing Microsoft Word®. However, these APIs do not offer UI or web control for performing these document processing tasks.

Our sister company GroupDocs.com offers a viewer app which you may consider including in your application to view the various file formats. With GroupDocs apps, you can also have limited editing functionalities. For more information, I suggest you please contact GroupDocs support through live chat or support forums of GroupDocs.

Moreover, if you just want to view pages in web browser, you can convert all pages in your Word document to images and then display them. Here is how you can convert pages to images:

Document document = new Document(@“C:\test\In.docx”);

ImageSaveOptions options = new ImageSaveOptions(SaveFormat.Jpeg);

options.PageCount = 1;

// Save each page of the document as Jpeg.

for (int i = 0; i < document.PageCount; i++)

{

options.PageIndex = i;

document.Save(string.Format(@“C:\test\out_{0}.jpg”, i), options);

}

Please let me know if I can be of any further assistance.

Best regards,

Hi Shabib,


Thank you for sending me an email. Unfortunately, Aspose does not provide technical support over the phone. Phone support is only available for sales and purchase questions.

Please let us know if we can be of any further assistance.

Best regards,