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?
Asked
Active
Viewed 1,610 times
2
-
This seems to work with 1.8.11 but not 1.8.13 – Eqbal Jul 21 '17 at 17:31
-
1Did 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 Jul 21 '17 at 17:36
1 Answers
1
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

Christoph
- 41
- 1
- 4
-
This is also what was suggested in a comment but OP never responded. Also using relative paths as you did is in this case not a good idea – albert Feb 13 '20 at 13:18
-
I can’t provide an absolute path because it depends on where you installed GraphViz. – Christoph Feb 13 '20 at 15:04
-
For me my answer solved the exact problem Eqbal had, so I thought I will share it. If someone has further problems I can try to help. :) – Christoph Feb 13 '20 at 15:09