How to specify image size in HTML Doxygen?
I am trying to manually specify the image size in the HTML generated by Doxygen. However, as I read in the documentation , this can only happen if using LaTeX output. Anybody here knows any workaround? As an example, I would like to do something like this: \image html example.png "Caption" width=10px Thank you! Put this in the CSS file "Doc/doxygen_html_style.css": div.image img[src="example.png"]{ width:100px; } And set the Doxygen config variable *HTML_EXTRA_STYLESHEET* to "Doc/doxygen_html_style.css" To avoid resorting to an extra CSS style sheet you can directly inline the CSS code: