You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.3 KiB
Plaintext

21 years ago
################################################################################
# File : exiv2.dot
# Version : $Rev$
# Author(s): Andreas Huggel (ahu) <ahuggel@gmx.net>
# History : 18-Feb-04, ahu: created
#
# Description:
# Dot file for a graph showing the component dependencies of the
# Exiv2 library. Run the following command to get the image:
# $ dot -Tgif -oexiv2.gif exiv2.dot
21 years ago
################################################################################
digraph G {
L1 [shape=plaintext] ;
L2 [shape=plaintext] ;
L3 [shape=plaintext] ;
L4 [shape=plaintext] ;
L5 [shape=plaintext] ;
"L5" -> "L4" -> "L3" -> "L2" -> "L1" [style=invis] ;
21 years ago
"exif" [shape=box] ;
"iptc" [shape=box] ;
"metadatum" [shape=box] ;
21 years ago
"ifd" [shape=box] ;
"image" [shape=box] ;
"tags" [shape=box] ;
"datasets" [shape=box] ;
21 years ago
"value" [shape=box] ;
"types" [shape=box] ;
"error" [shape=box] ;
"makernote" [shape=box] ;
"exif" -> "tags" ;
21 years ago
"exif" -> "makernote" ;
"exif" -> "image" ;
"iptc" -> "datasets" ;
"iptc" -> "image" ;
"metadatum" -> "value" ;
"metadatum" -> "error" ;
21 years ago
"makernote" -> "ifd" ;
"makernote" -> "value" ;
"ifd" -> "error" ;
"ifd" -> "types" ;
"image" -> "types" ;
"tags" -> "metadatum";
"datasets" -> "metadatum" ;
"value" -> "types" ;
{ rank=same; L1 error types }
{ rank=same; L2 image value ifd }
}