doxygen not generating image files for dot

Viewed 1301

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 Answers

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

Related