Reputation: 1535
I want to include an svg image file in doxygen documentation.
I am using the command
\image ./pics/gnu_lic/gplv3_logo.svg
However I cannot see the image
.
├── dox
├── Doxyfile
└── pics
├── gbehistun.png
├── gnu_lic
│ ├── agplv3_logo.png
│ ├── agplv3_logo.svg
│ ├── gfdl_logo.svg
│ ├── gplv3_logo.png
│ └── gplv3_logo.svg
└── meidum
└── tridim_latis.png
Upvotes: 5
Views: 4798
Reputation: 1535
There are two things one has to do.
First set IMAGE_PATH
. In my case I used pics
. Then my \image
commands should be changed to be
/// \image html gplv3_logo.png
/// \image html gplv3_logo.svg
This will get the images displayed.
Upvotes: 2