microstation 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.autotest +23 -0
- data/.gemtest +0 -0
- data/.rspec +2 -0
- data/Gemfile +17 -0
- data/History.txt +6 -0
- data/Manifest.txt +60 -0
- data/README.txt +75 -0
- data/Rakefile +30 -0
- data/bin/dgn2pdf +37 -0
- data/lib/microstation.rb +88 -0
- data/lib/microstation/app.rb +286 -0
- data/lib/microstation/attributes.rb +35 -0
- data/lib/microstation/cad_input_queue.rb +25 -0
- data/lib/microstation/configuration.rb +57 -0
- data/lib/microstation/dir.rb +252 -0
- data/lib/microstation/drawing.rb +189 -0
- data/lib/microstation/enumerator.rb +29 -0
- data/lib/microstation/ext/pathname.rb +25 -0
- data/lib/microstation/extensions/hash.rb +27 -0
- data/lib/microstation/pdf_support.rb +40 -0
- data/lib/microstation/properties.rb +57 -0
- data/lib/microstation/scan/color.rb +38 -0
- data/lib/microstation/scan/criteria.rb +85 -0
- data/lib/microstation/scan/klass.rb +43 -0
- data/lib/microstation/scan/level.rb +38 -0
- data/lib/microstation/scan/line_style.rb +45 -0
- data/lib/microstation/scan/line_weight.rb +33 -0
- data/lib/microstation/scan/subtype.rb +40 -0
- data/lib/microstation/scan/type.rb +109 -0
- data/lib/microstation/scanner.rb +24 -0
- data/lib/microstation/tag.rb +58 -0
- data/lib/microstation/tag_set.rb +280 -0
- data/lib/microstation/template.rb +84 -0
- data/lib/microstation/text.rb +54 -0
- data/lib/microstation/text_node.rb +74 -0
- data/lib/microstation/ts/attribute.rb +139 -0
- data/lib/microstation/ts/instance.rb +112 -0
- data/lib/microstation/types.rb +91 -0
- data/lib/microstation/wrap.rb +214 -0
- data/plot/pdf-bw.plt +164 -0
- data/plot/pdf.plt +163 -0
- data/plot/png.plt +383 -0
- data/plot/tiff.plt +384 -0
- data/plot/wmbw.tbl +66 -0
- data/plot/wmcolor.tbl +62 -0
- data/spec/app_spec.rb +267 -0
- data/spec/configuration_spec.rb +122 -0
- data/spec/drawing_spec.rb +247 -0
- data/spec/drawings/new_drawing.dgn +0 -0
- data/spec/drawings/test.dgn +0 -0
- data/spec/drawings/test1.dgn +0 -0
- data/spec/drawings/testfile.pdf +0 -0
- data/spec/enumerator_spec.rb +60 -0
- data/spec/microstation_spec.rb +36 -0
- data/spec/scanner_spec.rb +155 -0
- data/spec/spec_app.rb +11 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/tag_set_spec.rb +123 -0
- data/spec/text_node_spec.rb +92 -0
- data/spec/text_spec.rb +62 -0
- metadata +241 -0
data/plot/pdf.plt
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
;----------------------------------------------------------------------
|
2
|
+
;
|
3
|
+
; Portable Document file (PDF) Plotter Driver Configuration file
|
4
|
+
;
|
5
|
+
; Current Revision:
|
6
|
+
; $RCSfile: pdf.plt,v $
|
7
|
+
; $Revision: 1.1.2.16.2.1 $ $Date: 2004/03/23 21:07:42 $
|
8
|
+
;
|
9
|
+
;----------------------------------------------------------------------
|
10
|
+
|
11
|
+
;======================================================================
|
12
|
+
;
|
13
|
+
; >>>>> WARNING WARNING WARNING WARNING WARNING WARNING <<<<<
|
14
|
+
;
|
15
|
+
; Plotter driver configuration files are now stored in two directories:
|
16
|
+
;
|
17
|
+
; $(_USTN_WORKSPACEROOT)/System/plotdrv/
|
18
|
+
; $(_USTN_WORKSPACEROOT)/Standards/plotdrv/
|
19
|
+
;
|
20
|
+
; System/plotdrv/ should be reserved for .plt files delivered by
|
21
|
+
; MicroStation and other Bentley products. Standards/plotdrv/ is
|
22
|
+
; provided as a place for you to store customized .plt files. To
|
23
|
+
; simplify plotter selection from the Plot dialog, you may also
|
24
|
+
; elect to store frequently-used .plt files in Standards/plotdrv/
|
25
|
+
; even if you do not customize them.
|
26
|
+
;
|
27
|
+
; To minimize the risk of losing your changes during a product
|
28
|
+
; reinstallation, do not edit the files in the System/plotdrv/
|
29
|
+
; directory. Instead, copy the necessary files to Standards/plotdrv/
|
30
|
+
; and edit them there. If the .plt file depends on other files, such
|
31
|
+
; as PostScript prolog (*.pro) files, copy them to the same directory.
|
32
|
+
;
|
33
|
+
;======================================================================
|
34
|
+
; Construction/active points are plotted by default. Comment out the next line
|
35
|
+
; if you do not want points plotted.
|
36
|
+
|
37
|
+
point_size = 0.03
|
38
|
+
default_extension = 'pdf' ; default extension for plotfiles
|
39
|
+
document_set
|
40
|
+
model = mdl
|
41
|
+
driver = pdf
|
42
|
+
autocenter ; Automatically center plot on page
|
43
|
+
|
44
|
+
num_pens = 255 ; required record, must precede any "pen" records.
|
45
|
+
change_pen = both
|
46
|
+
|
47
|
+
; Remove this record if no border is desired.
|
48
|
+
; Refer to the documentation for available border qualifiers.
|
49
|
+
border /filename /time /text_height=0.35
|
50
|
+
|
51
|
+
; Substitute the name of a pentable file to be loaded when this driver is selected
|
52
|
+
;pentable=\dir\file.tbl
|
53
|
+
|
54
|
+
;=================================================================
|
55
|
+
;Turn the Book Marks on and off
|
56
|
+
CmdName /appname="pdf" /command="BookMarks" /qualifier="On"
|
57
|
+
;CmdName /appname="pdf" /command="BookMarks" /qualifier="Off"
|
58
|
+
;on by default
|
59
|
+
;=================================================================
|
60
|
+
|
61
|
+
;=================================================================
|
62
|
+
;Turn the Level/File optional content on and off
|
63
|
+
;CmdName /appname="pdf" /command="FileOptionalContent" /qualifier="On"
|
64
|
+
CmdName /appname="pdf" /command="FileOptionalContent" /qualifier="Off"
|
65
|
+
;off by default
|
66
|
+
;=================================================================
|
67
|
+
|
68
|
+
;=================================================================
|
69
|
+
;Turn Engineering links on and off
|
70
|
+
CmdName /appname="pdf" /command="EngineeringLinks" /qualifier="On"
|
71
|
+
;CmdName /appname="pdf" /command="EngineeringLinks" /qualifier="Off"
|
72
|
+
;on by default
|
73
|
+
;=================================================================
|
74
|
+
|
75
|
+
;=================================================================
|
76
|
+
;pick the version of pdf you want to support
|
77
|
+
CmdName /appname="pdf" /command="version" /qualifier="Acrobat 6 (PDF 1.5)/Viewable in Acrobat 5"
|
78
|
+
;CmdName /appname="pdf" /command="version" /qualifier="Acrobat 6 (PDF 1.5)"
|
79
|
+
;CmdName /appname="pdf" /command="version" /qualifier="Acrobat 5 (PDF 1.4)"
|
80
|
+
;=================================================================
|
81
|
+
|
82
|
+
;=================================================================
|
83
|
+
;uncomment the line and change the qualifier to your password
|
84
|
+
;if you wish to protect the output pdf file.
|
85
|
+
;NOTE the pdf file will not view with out the password
|
86
|
+
;But then is unprotected
|
87
|
+
;CmdName /appname="pdf" /command="userpassword" /qualifier="my_password"
|
88
|
+
;=================================================================
|
89
|
+
|
90
|
+
;=================================================================
|
91
|
+
;RGB Raster compression
|
92
|
+
;CmdName /appname="pdf" /command="RGBRasterCompression" /qualifier="jpeg"
|
93
|
+
CmdName /appname="pdf" /command="RGBRasterCompression" /qualifier="zipped"
|
94
|
+
;zipped by default
|
95
|
+
;=================================================================
|
96
|
+
|
97
|
+
;=================================================================
|
98
|
+
;Searchable Text
|
99
|
+
CmdName /appname="pdf" /command="SearchableText" /qualifier="on"
|
100
|
+
;CmdName /appname="pdf" /command="SearchableText" /qualifier="off"
|
101
|
+
;on by default
|
102
|
+
;=================================================================
|
103
|
+
|
104
|
+
|
105
|
+
; ENGLISH resolution and SIZE records
|
106
|
+
size=(44,34)/num=0/off=(0,0)/name="ANSI E"
|
107
|
+
size=(34,22)/num=0/off=(0,0)/name="ANSI D"
|
108
|
+
size=(22,17)/num=0/off=(0,0)/name="ANSI C"
|
109
|
+
size=(17,11)/num=0/off=(0,0)/name="ANSI B"
|
110
|
+
size=(11,8.5)/num=0/off=(0,0)/name="ANSI A"
|
111
|
+
resolution(IN)=(0.001666666666666666666667,0.001666666666666666666667) ;600DPI
|
112
|
+
|
113
|
+
; METRIC resolution and SIZE records
|
114
|
+
;size=(1189,841)/num=0/off=(0,0)/name="ISO A0"
|
115
|
+
;size=(841,594)/num=0/off=(0,0)/name="ISO A1"
|
116
|
+
;size=(594,420)/num=0/off=(0,0)/name="ISO A2"
|
117
|
+
;size=(420,297)/num=0/off=(0,0)/name="ISO A3"
|
118
|
+
;size=(297,210)/num=0/off=(0,0)/name="ISO A4"
|
119
|
+
;resolution(MM)=(0.04233333333333333333333,0.04233333333333333333333); 600DPI
|
120
|
+
|
121
|
+
; The style records define how the design file line codes (styles)
|
122
|
+
; are to be plotted. Values are in plotter units (resolutions).
|
123
|
+
; Values determine pen down/up movements, where (10,28) for a dot
|
124
|
+
; pattern leaves the pen down for 10 units and up for 28 units. The
|
125
|
+
; /nohardware switch causes software stroking with these values.
|
126
|
+
; This example has the /nohardware option commented
|
127
|
+
; out, so the printer will draw the styles.
|
128
|
+
|
129
|
+
style(1)=(18, 18) ;/nohardware ;style = dot
|
130
|
+
style(2)=(37, 37) ;/nohardware ;style = med dash
|
131
|
+
style(3)=(75, 75) ;/nohardware ;style = long dash
|
132
|
+
style(4)=(75, 37, 18, 37) ;/nohardware ;style = dot-dash
|
133
|
+
style(5)=(27, 27) ;/nohardware ;style = short dash
|
134
|
+
style(6)=(75, 37, 18, 37, 18, 37) ;/nohardware ;style = dash-dot-dot
|
135
|
+
style(7)=(75, 27, 32, 27) ;/nohardware ;style = long dash - short dash
|
136
|
+
|
137
|
+
stroke_tolerance=9.0
|
138
|
+
largest_polygon=200000
|
139
|
+
linecap = 0 ; 0=butt, 1=round, 2=square
|
140
|
+
linejoin = 0 ; 0=mitered, 1=round, 2=bevel
|
141
|
+
miter_limit = 3.0 ; larger values mean longer spikes
|
142
|
+
; 1=none, 1.415=90deg, 2=60deg, 10=11deg etc.
|
143
|
+
|
144
|
+
; Specify the mapping of MicroStation line weights to line thickness on paper.
|
145
|
+
; Units are MM, IN, or DOTS (the default)
|
146
|
+
|
147
|
+
weight_strokes(mm)=(0.250, 0.375, 0.500, 0.625, 0.750, 0.875, 1.000, 1.125, \
|
148
|
+
1.250, 1.375, 1.500, 1.625, 1.750, 1.875, 2.000, 2.125, \
|
149
|
+
2.250, 2.375, 2.500, 2.625, 2.750, 2.875, 3.000, 3.125, \
|
150
|
+
3.250, 3.375, 3.500, 3.625, 3.750, 3.875, 4.000, 4.125)
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
; The following options control raster plotting.
|
155
|
+
isv_raster=1 ; Plots the raster image, 1=On 0=Off Default=1
|
156
|
+
pixel_resolution=300 ; Resolution of pixels on output (dpi) Default=300
|
157
|
+
contrast=50 ; Contrast in percent, between 0-100 Default=50
|
158
|
+
brightness=50 ; Brightness in percent, between 0-100 Default=50
|
159
|
+
raster_fence=1 ; Clip the raster to fence, 1=On 0=Off Default=1
|
160
|
+
grayscale=0 ; Plot in gray scale, 1=On 0=Off Default=0
|
161
|
+
no_dgnraster=0 ; MS plot of 87/88, 1=Don't plot 0=Plot Default=0
|
162
|
+
background = 0 ; 0=white,1=black,2=color Default=0
|
163
|
+
no_rasterref=0 ; MS plot of 90's, 1=Don't plot 0=Plot Default=0
|
data/plot/png.plt
ADDED
@@ -0,0 +1,383 @@
|
|
1
|
+
;----------------------------------------------------------------------
|
2
|
+
;
|
3
|
+
; Portable Network Graphics (PNG) Output File Plotter Configuration file
|
4
|
+
;
|
5
|
+
; Current Revision:
|
6
|
+
; $RCSfile: png.plt,v $
|
7
|
+
; $Revision: 7.18.2.5 $ $Date: 2004/02/06 20:55:47 $
|
8
|
+
;
|
9
|
+
;----------------------------------------------------------------------
|
10
|
+
|
11
|
+
;======================================================================
|
12
|
+
;
|
13
|
+
; >>>>> WARNING WARNING WARNING WARNING WARNING WARNING <<<<<
|
14
|
+
;
|
15
|
+
; Plotter driver configuration files are now stored in two directories:
|
16
|
+
;
|
17
|
+
; $(_USTN_WORKSPACEROOT)/System/plotdrv/
|
18
|
+
; $(_USTN_WORKSPACEROOT)/Standards/plotdrv/
|
19
|
+
;
|
20
|
+
; System/plotdrv/ should be reserved for .plt files delivered by
|
21
|
+
; MicroStation and other Bentley products. Standards/plotdrv/ is
|
22
|
+
; provided as a place for you to store customized .plt files. To
|
23
|
+
; simplify plotter selection from the Plot dialog, you may also
|
24
|
+
; elect to store frequently-used .plt files in Standards/plotdrv/
|
25
|
+
; even if you do not customize them.
|
26
|
+
;
|
27
|
+
; To minimize the risk of losing your changes during a product
|
28
|
+
; reinstallation, do not edit the files in the System/plotdrv/
|
29
|
+
; directory. Instead, copy the necessary files to Standards/plotdrv/
|
30
|
+
; and edit them there. If the .plt file depends on other files, such
|
31
|
+
; as PostScript prolog (*.pro) files, copy them to the same directory.
|
32
|
+
;
|
33
|
+
;======================================================================
|
34
|
+
|
35
|
+
num_pens = 255 ; required record, must precede any "pen" records.
|
36
|
+
change_pen = both ; options are color, weight, level or both
|
37
|
+
model = MDL ; plotter model number
|
38
|
+
driver = lorip ; MDL driver to use
|
39
|
+
autocenter ; Automatically center plot on page
|
40
|
+
|
41
|
+
; Refer to the documentation for available border qualifiers.
|
42
|
+
; Note that only the border outline is supported in this driver.
|
43
|
+
;border
|
44
|
+
|
45
|
+
default_extension = 'png' ; default extension for plotfiles
|
46
|
+
;
|
47
|
+
; To configure a default output file name comment out the default_extension
|
48
|
+
; line above and uncomment this line. "c:\tmp\color256.png" may be substituted
|
49
|
+
; with any desired filename - e.g. "$(MS_PLTFILES)plotfile.000"
|
50
|
+
;
|
51
|
+
;default_outFile/auto_overwrite = "c:\tmp\color256.png"
|
52
|
+
|
53
|
+
; Using this line allows you to change the mime-type returned by Publisher
|
54
|
+
; when it uses this .plt file to satisfy a request.
|
55
|
+
;SymbolAssign/IgnoreError=SymNotFound/name="mspTransaction_szMimeType"/value="image/png"
|
56
|
+
|
57
|
+
size=(100,100)/off=(0,0)/name=max ; Mandatory form name for Publisher
|
58
|
+
size=(80,64)/off=(0,0)/name=1280x1024 ; leave room for border and border text
|
59
|
+
size=(64,48)/off=(0,0)/name=1024x768 ; leave room for border and border text
|
60
|
+
size=(50,37.5)/off=(0,0)/name=800x600 ; leave room for border and border text
|
61
|
+
size=(40,30)/off=(0,0)/name=640x480 ; leave room for border and border text
|
62
|
+
resolution(IN)=(0.0625, 0.0625) ; 50 inches / 800 dots == 16 dpi
|
63
|
+
|
64
|
+
; Stroke_tolerance determines tolerance for arcs and circles. Value is
|
65
|
+
; between 0 and 10 with 10 being the tightest tolerance. Larger values
|
66
|
+
; also create larger plot files.
|
67
|
+
stroke_tolerance=10
|
68
|
+
|
69
|
+
;
|
70
|
+
; Pen 0 is the 'background' pen. Other pens get their color by default from
|
71
|
+
; the corresponding color in the current design file color table. The background
|
72
|
+
; pen instead defaults to white. To have the background pen get it's value from
|
73
|
+
; the master file color table, we assign it an RGB of(-1, -1, -1).
|
74
|
+
;
|
75
|
+
pen(0)=/rgb=(-1, -1, -1) ; get background pen color from master file background color
|
76
|
+
|
77
|
+
; Format = 28 tells the lorip driver to generate a PNG file.
|
78
|
+
raster_compression/format=28/methods=(0)
|
79
|
+
|
80
|
+
; The style records define how the design file line codes (styles)
|
81
|
+
; are to be plotted. Values are in plotter units (units of device resolution).
|
82
|
+
; Values determine pen down/up movements, where (10,28) for a dot
|
83
|
+
; pattern leaves the pen down for 10 units and up for 28 units. The
|
84
|
+
; /nohardware switch causes software stroking with these values.
|
85
|
+
|
86
|
+
style(1)=(1, 6) /nohardware ;style = dot
|
87
|
+
style(2)=(6, 4) /nohardware ;style = med dash
|
88
|
+
style(3)=(10, 4) /nohardware ;style = long dash
|
89
|
+
style(4)=(8, 4, 1, 4) /nohardware ;style = dot-dash
|
90
|
+
style(5)=(3, 4) /nohardware ;style = short dash
|
91
|
+
style(6)=(1, 4, 7, 4, 1, 4) /nohardware ;style = dash-dot-dot
|
92
|
+
style(7)=(9, 4, 3, 4) /nohardware ;style = long dash - short dash
|
93
|
+
|
94
|
+
; The weight line determines the number of strokes to use with each weight.
|
95
|
+
; The first position defines weight 0, second weight 1, third weight 2 and
|
96
|
+
; so on up to weight 31. To increase or decrease the number of plotter units per
|
97
|
+
; weight, change the number in that position.
|
98
|
+
|
99
|
+
weight_strokes=(1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16)
|
100
|
+
|
101
|
+
; Construction/active points are plotted by default. Comment out the next line
|
102
|
+
; if you do not want points plotted.
|
103
|
+
point_size = .35
|
104
|
+
|
105
|
+
largest_polygon=20000
|
106
|
+
|
107
|
+
; The pen_width record determines how far the pen moves when drawing
|
108
|
+
; thick lines (weights) or when used to fill elements. Since this is
|
109
|
+
; a rasterizing plotter driver, we want to move the pen 1 plotter coordinate
|
110
|
+
; (1 pixel).
|
111
|
+
pen_width(1)=1
|
112
|
+
pen_width(2)=1
|
113
|
+
pen_width(3)=1
|
114
|
+
pen_width(4)=1
|
115
|
+
pen_width(5)=1
|
116
|
+
pen_width(6)=1
|
117
|
+
pen_width(7)=1
|
118
|
+
pen_width(8)=1
|
119
|
+
pen_width(9)=1
|
120
|
+
pen_width(10)=1
|
121
|
+
pen_width(11)=1
|
122
|
+
pen_width(12)=1
|
123
|
+
pen_width(13)=1
|
124
|
+
pen_width(14)=1
|
125
|
+
pen_width(15)=1
|
126
|
+
pen_width(16)=1
|
127
|
+
pen_width(17)=1
|
128
|
+
pen_width(18)=1
|
129
|
+
pen_width(19)=1
|
130
|
+
pen_width(20)=1
|
131
|
+
pen_width(21)=1
|
132
|
+
pen_width(22)=1
|
133
|
+
pen_width(23)=1
|
134
|
+
pen_width(24)=1
|
135
|
+
pen_width(25)=1
|
136
|
+
pen_width(26)=1
|
137
|
+
pen_width(27)=1
|
138
|
+
pen_width(28)=1
|
139
|
+
pen_width(29)=1
|
140
|
+
pen_width(30)=1
|
141
|
+
pen_width(31)=1
|
142
|
+
pen_width(32)=1
|
143
|
+
pen_width(33)=1
|
144
|
+
pen_width(34)=1
|
145
|
+
pen_width(35)=1
|
146
|
+
pen_width(36)=1
|
147
|
+
pen_width(37)=1
|
148
|
+
pen_width(38)=1
|
149
|
+
pen_width(39)=1
|
150
|
+
pen_width(40)=1
|
151
|
+
pen_width(41)=1
|
152
|
+
pen_width(42)=1
|
153
|
+
pen_width(43)=1
|
154
|
+
pen_width(44)=1
|
155
|
+
pen_width(45)=1
|
156
|
+
pen_width(46)=1
|
157
|
+
pen_width(47)=1
|
158
|
+
pen_width(48)=1
|
159
|
+
pen_width(49)=1
|
160
|
+
pen_width(50)=1
|
161
|
+
pen_width(51)=1
|
162
|
+
pen_width(52)=1
|
163
|
+
pen_width(53)=1
|
164
|
+
pen_width(54)=1
|
165
|
+
pen_width(55)=1
|
166
|
+
pen_width(56)=1
|
167
|
+
pen_width(57)=1
|
168
|
+
pen_width(58)=1
|
169
|
+
pen_width(59)=1
|
170
|
+
pen_width(60)=1
|
171
|
+
pen_width(61)=1
|
172
|
+
pen_width(62)=1
|
173
|
+
pen_width(63)=1
|
174
|
+
pen_width(64)=1
|
175
|
+
pen_width(65)=1
|
176
|
+
pen_width(66)=1
|
177
|
+
pen_width(67)=1
|
178
|
+
pen_width(68)=1
|
179
|
+
pen_width(69)=1
|
180
|
+
pen_width(70)=1
|
181
|
+
pen_width(71)=1
|
182
|
+
pen_width(72)=1
|
183
|
+
pen_width(73)=1
|
184
|
+
pen_width(74)=1
|
185
|
+
pen_width(75)=1
|
186
|
+
pen_width(76)=1
|
187
|
+
pen_width(77)=1
|
188
|
+
pen_width(78)=1
|
189
|
+
pen_width(79)=1
|
190
|
+
pen_width(80)=1
|
191
|
+
pen_width(81)=1
|
192
|
+
pen_width(82)=1
|
193
|
+
pen_width(83)=1
|
194
|
+
pen_width(84)=1
|
195
|
+
pen_width(85)=1
|
196
|
+
pen_width(86)=1
|
197
|
+
pen_width(87)=1
|
198
|
+
pen_width(88)=1
|
199
|
+
pen_width(89)=1
|
200
|
+
pen_width(90)=1
|
201
|
+
pen_width(91)=1
|
202
|
+
pen_width(92)=1
|
203
|
+
pen_width(93)=1
|
204
|
+
pen_width(94)=1
|
205
|
+
pen_width(95)=1
|
206
|
+
pen_width(96)=1
|
207
|
+
pen_width(97)=1
|
208
|
+
pen_width(98)=1
|
209
|
+
pen_width(99)=1
|
210
|
+
pen_width(100)=1
|
211
|
+
pen_width(101)=1
|
212
|
+
pen_width(102)=1
|
213
|
+
pen_width(103)=1
|
214
|
+
pen_width(104)=1
|
215
|
+
pen_width(105)=1
|
216
|
+
pen_width(106)=1
|
217
|
+
pen_width(107)=1
|
218
|
+
pen_width(108)=1
|
219
|
+
pen_width(109)=1
|
220
|
+
pen_width(110)=1
|
221
|
+
pen_width(111)=1
|
222
|
+
pen_width(112)=1
|
223
|
+
pen_width(113)=1
|
224
|
+
pen_width(114)=1
|
225
|
+
pen_width(115)=1
|
226
|
+
pen_width(116)=1
|
227
|
+
pen_width(117)=1
|
228
|
+
pen_width(118)=1
|
229
|
+
pen_width(119)=1
|
230
|
+
pen_width(120)=1
|
231
|
+
pen_width(121)=1
|
232
|
+
pen_width(122)=1
|
233
|
+
pen_width(123)=1
|
234
|
+
pen_width(124)=1
|
235
|
+
pen_width(125)=1
|
236
|
+
pen_width(126)=1
|
237
|
+
pen_width(127)=1
|
238
|
+
pen_width(128)=1
|
239
|
+
pen_width(129)=1
|
240
|
+
pen_width(130)=1
|
241
|
+
pen_width(131)=1
|
242
|
+
pen_width(132)=1
|
243
|
+
pen_width(133)=1
|
244
|
+
pen_width(134)=1
|
245
|
+
pen_width(135)=1
|
246
|
+
pen_width(136)=1
|
247
|
+
pen_width(137)=1
|
248
|
+
pen_width(138)=1
|
249
|
+
pen_width(139)=1
|
250
|
+
pen_width(140)=1
|
251
|
+
pen_width(141)=1
|
252
|
+
pen_width(142)=1
|
253
|
+
pen_width(143)=1
|
254
|
+
pen_width(144)=1
|
255
|
+
pen_width(145)=1
|
256
|
+
pen_width(146)=1
|
257
|
+
pen_width(147)=1
|
258
|
+
pen_width(148)=1
|
259
|
+
pen_width(149)=1
|
260
|
+
pen_width(150)=1
|
261
|
+
pen_width(151)=1
|
262
|
+
pen_width(152)=1
|
263
|
+
pen_width(153)=1
|
264
|
+
pen_width(154)=1
|
265
|
+
pen_width(155)=1
|
266
|
+
pen_width(156)=1
|
267
|
+
pen_width(157)=1
|
268
|
+
pen_width(158)=1
|
269
|
+
pen_width(159)=1
|
270
|
+
pen_width(160)=1
|
271
|
+
pen_width(161)=1
|
272
|
+
pen_width(162)=1
|
273
|
+
pen_width(163)=1
|
274
|
+
pen_width(164)=1
|
275
|
+
pen_width(165)=1
|
276
|
+
pen_width(166)=1
|
277
|
+
pen_width(167)=1
|
278
|
+
pen_width(168)=1
|
279
|
+
pen_width(169)=1
|
280
|
+
pen_width(170)=1
|
281
|
+
pen_width(171)=1
|
282
|
+
pen_width(172)=1
|
283
|
+
pen_width(173)=1
|
284
|
+
pen_width(174)=1
|
285
|
+
pen_width(175)=1
|
286
|
+
pen_width(176)=1
|
287
|
+
pen_width(177)=1
|
288
|
+
pen_width(178)=1
|
289
|
+
pen_width(179)=1
|
290
|
+
pen_width(180)=1
|
291
|
+
pen_width(181)=1
|
292
|
+
pen_width(182)=1
|
293
|
+
pen_width(183)=1
|
294
|
+
pen_width(184)=1
|
295
|
+
pen_width(185)=1
|
296
|
+
pen_width(186)=1
|
297
|
+
pen_width(187)=1
|
298
|
+
pen_width(188)=1
|
299
|
+
pen_width(189)=1
|
300
|
+
pen_width(190)=1
|
301
|
+
pen_width(191)=1
|
302
|
+
pen_width(192)=1
|
303
|
+
pen_width(193)=1
|
304
|
+
pen_width(194)=1
|
305
|
+
pen_width(195)=1
|
306
|
+
pen_width(196)=1
|
307
|
+
pen_width(197)=1
|
308
|
+
pen_width(198)=1
|
309
|
+
pen_width(199)=1
|
310
|
+
pen_width(200)=1
|
311
|
+
pen_width(201)=1
|
312
|
+
pen_width(202)=1
|
313
|
+
pen_width(203)=1
|
314
|
+
pen_width(204)=1
|
315
|
+
pen_width(205)=1
|
316
|
+
pen_width(206)=1
|
317
|
+
pen_width(207)=1
|
318
|
+
pen_width(208)=1
|
319
|
+
pen_width(209)=1
|
320
|
+
pen_width(210)=1
|
321
|
+
pen_width(211)=1
|
322
|
+
pen_width(212)=1
|
323
|
+
pen_width(213)=1
|
324
|
+
pen_width(214)=1
|
325
|
+
pen_width(215)=1
|
326
|
+
pen_width(216)=1
|
327
|
+
pen_width(217)=1
|
328
|
+
pen_width(218)=1
|
329
|
+
pen_width(219)=1
|
330
|
+
pen_width(220)=1
|
331
|
+
pen_width(221)=1
|
332
|
+
pen_width(222)=1
|
333
|
+
pen_width(223)=1
|
334
|
+
pen_width(224)=1
|
335
|
+
pen_width(225)=1
|
336
|
+
pen_width(226)=1
|
337
|
+
pen_width(227)=1
|
338
|
+
pen_width(228)=1
|
339
|
+
pen_width(229)=1
|
340
|
+
pen_width(230)=1
|
341
|
+
pen_width(231)=1
|
342
|
+
pen_width(232)=1
|
343
|
+
pen_width(233)=1
|
344
|
+
pen_width(234)=1
|
345
|
+
pen_width(235)=1
|
346
|
+
pen_width(236)=1
|
347
|
+
pen_width(237)=1
|
348
|
+
pen_width(238)=1
|
349
|
+
pen_width(239)=1
|
350
|
+
pen_width(240)=1
|
351
|
+
pen_width(241)=1
|
352
|
+
pen_width(242)=1
|
353
|
+
pen_width(243)=1
|
354
|
+
pen_width(244)=1
|
355
|
+
pen_width(245)=1
|
356
|
+
pen_width(246)=1
|
357
|
+
pen_width(247)=1
|
358
|
+
pen_width(248)=1
|
359
|
+
pen_width(249)=1
|
360
|
+
pen_width(250)=1
|
361
|
+
pen_width(251)=1
|
362
|
+
pen_width(252)=1
|
363
|
+
pen_width(253)=1
|
364
|
+
pen_width(254)=1
|
365
|
+
pen_width(255)=1
|
366
|
+
|
367
|
+
|
368
|
+
; The following options control printing of Raster Manager images.
|
369
|
+
; Refer to the "Printing Using Raster Manager" section of the documentation
|
370
|
+
; for descriptions of these records.
|
371
|
+
|
372
|
+
software_raster/resolution=16/background=black
|
373
|
+
|
374
|
+
PIXEL_RESOLUTION = 75
|
375
|
+
GRAYSCALE = 0
|
376
|
+
BACKGROUND = 2
|
377
|
+
CONTRAST = 50
|
378
|
+
BRIGHTNESS = 50
|
379
|
+
NO_RASTERREF = 0
|
380
|
+
|
381
|
+
; The following record specifies whether type 87/88 raster elements are printed.
|
382
|
+
; This record is ignored by Raster Manager.
|
383
|
+
NO_DGNRASTER = 0 ; 0=plot, 1=don't plot (the default is to plot).
|