Search code examples
documentationdoxygenimage-resizing

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!


Solution

  • 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"