2
votes

I am trying to use doxygen to scan a C# codebase and generating class diagrams/call graphs etc. using dot. I see dot files getting genarated but no images are generated. I have tried different image formats png and jpg with no change. As a result the image links are broken when I browse the classes from html. Any idea what could be the problem?

1
This seems to work with 1.8.11 but not 1.8.13Eqbal
Did you try to set the DOT_PATH ? Do you get an error message? Try to run doxygen -d extcmd Doxyfile to see which commands are used.albert

1 Answers

0
votes

The png images are generated if you install GraphViz and the program is linked with the DOT_PATH configuration in the Doxywizard tool like here:

DOT_PATH = "../Program Files (x86)/Graphviz2.38/bin"

I think this answers your question: answer