1DIA(1) [FIXME: manual] DIA(1)
2
3
4
6 dia - a diagram drawing program
7
9 dia [-c] [--credits] [-e OUTPUT] [--export=OUTPUT] [-L LAYER,LAYER,...]
10 [--show-layers=LAYER,LAYER,...] [-h] [--help] [-n] [--nosplash]
11 [-s WxH] [--size=WxH] [-t FORMAT] [--filter=FORMAT] [-v]
12 [--version] [file ...]
13
15 Dia is used to create diagrams. Dia has a number of basic tools, like
16 lines and boxes but can also dynamically load sheets. A sheet is a
17 collection of tools that are used in a certain type of diagram.
18
19 Most diagram objects in Dia have connection points. Lines can be
20 connected to these connection points and this way graph structures can
21 be formed. When objects are moved or resized the connections will
22 follow the objects.
23
24 Diagrams drawn in Dia can be exported as PostScript.
25
27 Dia accepts the following options:
28
29 -c --credits
30 Display credits list and exit.
31
32 -e OUTPUT --export=OUTPUT
33 Export loaded file to OUTPUT and exit.
34
35 -h --help
36 Display a list of all commandline options.
37
38 -n --nosplash
39 Do not show the splash screen.
40
41 -s WxH --size=WxH
42 Export loaded file in decimal given width and/or height. It is
43 allowed to only select width or height. E.g. --size=520x exports
44 an image that is 520 pixels wide, while --size=x900 exports an
45 image of 900 pixels height.
46
47 Note
48 This option is currently only implemented for the PNG export
49 filter.
50
51 -L LAYER,LAYER,... --show-layers=LAYER,LAYER,...
52 Only include specified layers when exporting. Layers can be
53 specified either as a layer name, the layer number or a numeric
54 range X-Y of layers. --show-layers=background,2-5 shows the layer
55 named background and layers 2-5, --show-layers=2- shows layers 2
56 and up.
57
58 -t FORMAT --export-to-format=FORMAT
59 Export loaded file in FORMAT and exit. Format are described below.
60
61 -v --version
62 Display dia version and exit.
63
65 The following export formats are supported by dia.
66
67 · cgm (Computer Graphics Metafile, ISO 8632)
68
69 · dia (Native dia diagram)
70
71 · dxf (Drawing Interchange File)
72
73 · eps or eps-builtin or eps-pango (Encapsulated PostScript)
74
75 The format specifications eps and eps-pango both use the font
76 renderer of the Pango library, while eps-builtin uses a dia
77 specific font renderer. If you have problems with Pango rendering,
78 e.g. Unicode, try eps-builtin instead.
79
80 · fig (XFig format)
81
82 · mp (TeX MetaPost macros)
83
84 · plt or hpgl (HP Graphics Language)
85
86 · png (Portable Network Graphics)
87
88 · shape (Dia Shape File)
89
90 · svg (Scalable Vector Graphics)
91
92 · tex (TeX PSTricks macros)
93
94 · wpg (WordPerfect Graphics)
95
96 · wmf (Windows MetaFile)
97
99 dia creates a directory .dia in the user's home, which contains
100 different files to store user preferences. To reset dia to it's default
101 behaviour, just remove the respective file:
102
103 · defaults.dia: contains default values for elements (XML format).
104
105 · diarc: keeps dia preferences (ASCII).
106
107 · history: keeps the list of last edited diagrams (ASCII).
108
109 · menurc: contains an automated accelerator map dump (Lisp).
110
111 · persistence: contains GUI information, e.g. open windows (XML).
112
113 · pluginrc: the list of loaded plugins (XML).
114
116 Pango[1]
117
118 X (1)
119
120 xfig (1)
121
122 inkscape (1)
123
125 Copyright 1999 Alexander Larsson.
126
127 Permission to use, copy, modify, and distribute this software and its
128 documentation for any purpose and without fee is hereby granted,
129 provided that the above copyright notice appear in all copies and that
130 both that copyright notice and this permission notice appear in
131 supporting documentation.
132
134 Alexander Larsson
135
136 This manual was written by Fredrik Hallenberg.
137
139 Fredrik Hallenberg <hallon@lysator.liu.se>
140 Author.
141
142 W. Borgert <debacle@debian.org>
143 Author.
144
145 Alan Horkan <horkana@tcd.ie>
146 Author.
147
149 Copyright © 1999, 2004 Fredrik Hallenberg, W. Borgert, Alan Horkan
150
152 1. Pango
153 http://www.pango.org/
154
155
156
157[FIXME: source] 2004-11-26 DIA(1)