aspose-free-consulting / projects

The starting point for Aspose free consulting projects
5 stars 5 forks source link

I want to set same url provided for image in docx while converting to html in Aspose Words #384

Closed shihaf closed 2 months ago

shihaf commented 3 months ago

Aspose words usually converts docx into html by saving images in the images folder and use its path as src. But I dont want to download image and I just need to src of image present in html to be same as src given in docx.

AlexNosk commented 3 months ago

@shihaf DOCX documents usually contain embedded images, which are stored inside the document. So upon saving document to HTML the images are saved separately. You can use IImageSavingCallback to store images in the custom location.

PS: the main place for getting support is Aspose.Words support forum.

shihaf commented 2 months ago

Thanks @AlexNosk