doxygen not generating image files for dot

1.8k Views Asked by At

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

There are 1 best solutions below

3
On

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