Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 031_image.dox
1 // objective: test the \image command
2 // check: indexpage.xml
3 // config: IMAGE_PATH = $INPUTDIR
4 /** \mainpage
5 Some text.
6 \image html sample.png
7 \image latex sample.png "Doxygen logo" width=5cm
8 \image docbook sample.png
9 More text.
10
11 SVG image with caption:\n
12 \image html https://raster.shields.io/badge/license-MIT-brightgreen.svg "A caption"
13
14 PNG image with caption:\n
15 \image html https://raster.shields.io/badge/license-MIT-brightgreen.png "A caption"
16
17 SVG image without caption:\n
18 \image html https://raster.shields.io/badge/license-MIT-brightgreen.svg
19
20 PNG image without caption:\n
21 \image html https://raster.shields.io/badge/license-MIT-brightgreen.png
22
23 Inline SVG image with caption:\n
24 This image is inline \image{inline} html https://raster.shields.io/badge/license-MIT-brightgreen.svg "MIT license" within the text.
25
26 Inline PNG image with caption:\n
27 This image is inline
28 \image{inline} html https://raster.shields.io/badge/license-MIT-brightgreen.png "MIT license"
29 within the text.
30
31 Markdown style linked SVG image:\n
32 [![MIT license](https://raster.shields.io/badge/license-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
33
34 Markdown style linked PNG image:\n
35 [![MIT license](https://raster.shields.io/badge/license-MIT-brightgreen.png)](https://opensource.org/licenses/MIT)
36
37 HTML style linked SVG image:\n
38 <a href="https://opensource.org/licenses/MIT">
39 <img src="https://raster.shields.io/badge/license-MIT-brightgreen.svg" alt="MIT license">
40 </a>
41
42 HTML style linked PNG image:\n
43 <a href="https://opensource.org/licenses/MIT">
44 <img src="https://raster.shields.io/badge/license-MIT-brightgreen.png" alt="MIT license">
45 </a>
46
47 HTML style unlinked SVG image:\n
48 <img src="https://raster.shields.io/badge/license-MIT-brightgreen.svg" alt="MIT license"/>
49
50 HTML style unlinked PNG image:\n
51 <img src="https://raster.shields.io/badge/license-MIT-brightgreen.png" alt="MIT license"/>
52
53 Some markdown image tests\n
54 ![Some SVG image](https://raster.shields.io/badge/docs-Doxygen-blue.svg?foo&bar)
55 [Some normal link](https://www.doxygen.nl/index.html?foo&bar)
56
57 ![Some SVG image](https://raster.shields.io/badge/docs-Doxygen-blue.svg?foo&amp;bar)
58 [Some normal link](https://www.doxygen.nl/index.html?foo&amp;bar)
59 */