Why don't I see SVG images in a collaborative review?
You can make configuration changes in the output generator to view SVG files in a collaborative review.
Description
The output generator configuration files can be updated to convert MathML and SVG files to PNG so they can be displayed in a collaborative review.
Solution
- Edit the data\commontargets-client.xml file and
add:
<target name="extract_LowRes_images_cr"><echostart>extract_LowRes_images_cr</echostart> <!-- Will process the multiple images container. --> <!-- If the image to extract is a SVG or MathML file and the formatter is FOP, we need to generate a raster version of the SVG or MathML otherwise FOP will throw errors for these images --> <extract-images indir="${outgen.job.source.dir}" type="LowRes" extension=".image"> <equation mime="application/mathml+xml" ratio="1"> <param name="debug" value="0"/> </equation> <equation mime="image/svg+xml" ratio="1"> <!-- <param name="KEY_WIDTH" value="200"/>--> </equation> </extract-images> <echoend>extract_LowRes_images_cr</echoend> </target>
- In the conductor-ixia-cr.xml file, change
extract_LowRes_images
toextract_LowRes_images_cr
for approvals and XHTML targets:<target name="dita2xhtmlapproval" depends="default_dependencies, dita2xhtmlcr.init, flatten, resolve_container_keyref, dita2xhtmlcr.addchunkattr, extract_LowRes_images_cr">
<target name="dita2xhtmlcr" depends="default_dependencies, dita2xhtmlcr.init, flatten, resolve_container_keyref, dita2xhtmlcr.addchunkattr, extract_LowRes_images_cr">