I am building a web-client document viewer that uses the Aspose.Words library to render SVG output on the server for client-side display. To support a scrolling interface, we render the document to SVG a page at a time.
The issue is that the SVG document generated for each page contains image tags with ID’s that repeated on subsequent pages. For example (below), on the first page, the SVG generates an image tag with id=”image2” in the section. On the second (or subsequent) page, it will generate a different image for that page, and reuse the id (image2)
…
Since we are placing each document in a different
Is there any way I can force the SVG generation to qualify the identifiers so that they are specific to the context or page in which it is being generated?