|
求教PROE转CAD的bylayer颜色问题
以下是我的dxf_export.pro文件,
线型转过CAD后都是bylayer线型,
但颜色转过CAD后却不是bylayer颜色,(在dwg导出环境窗口里的颜色选项卡里面都显示按层了)
求教原因。
我用的版本是wf5.0 f000
!===================================================================
!此文件设置dxf/dwg导出环境窗口里的缺省值。
!2010年04月版 lin
!===================================================================
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
!map_color <1> <2>
!颜色转换设置,值<1>是Pro/E里的颜色名称,值<2>是Auto CAD里的颜色名称。
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
map_color BACKGROUND_COLOR bylayer
map_color DIMMED_COLOR bylayer
map_color LETTER_COLOR bylayer
map_color HIGHLIGHT_COLOR bylayer
map_color EDGE_HIGHLIGHT_COLOR bylayer
map_color GEOMETRY_COLOR bylayer
map_color HIDDEN_COLOR bylayer
map_color SHEETMETAL_COLOR bylayer
map_color CURVE_COLOR bylayer
map_color VOLUME_COLOR bylayer
map_color SECTION_COLOR bylayer
map_color PRESEL_HIGHLIGHT_COLOR bylayer
map_color SELECTED_COLOR bylayer
map_color SECONDARY_SELECTED_COLOR bylayer
map_color PREVIEW_GEOM_COLOR bylayer
map_color SECONDARY_PREVIEW_COLOR bylayer
map_color DATUM_COLOR bylayer
map_color QUILT_COLOR bylayer
map_color 0,255,0 bylayer
map_color 3,3,255 bylayer
map_color 28,28,28 bylayer
map_color 100,3,3 bylayer
map_color 105,0,56 bylayer
map_color 224,242,255 bylayer
map_color 245,245,245 bylayer
map_color 250,160,0 bylayer
map_color 255,0,0 bylayer
map_color 255,255,0 bylayer
map_color 255,255,242 bylayer
map_color 255,255,255 bylayer
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
!map_layer <1> <2>
!图层转换设置,值<1>是Pro/E里的图层名称,值<2>是Auto CAD里的图层名称。
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
map_layer DXF_AXIS _AXIS
map_layer DXF_CONTINUOUS_LINE _CONTINUOUS_LINE
map_layer DXF_HIDDEN_LINE _HIDDEN_LINE
map_layer DXF_DIMENSION _DIMENSION
map_layer DXF_TEXT _TEXT
map_layer DXF_HATCHING _HATCHING
map_layer DXF_TABLE _TABLE
map_layer DXF_BALLOON _BALLOON
map_layer DXF_FORMAT _FORMAT
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
!map_line_style <1> <2>
!线型转换设置,值<1>是Pro/E里的线型名称,值<2>是Auto CAD里的线型名称。
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
map_line_style solidfont bylayer
!实线
map_line_style dotfont bylayer
!点虚线
map_line_style ctrlfont bylayer
!控制线
map_line_style phantomfont bylayer
!双点划线
map_line_style dashfont bylayer
!短划线
map_line_style ctrlfont_s_l bylayer
!ctrlfont_s_l
map_line_style ctrlfont_l_l bylayer
!控制线_L_L
map_line_style ctrlfont_s_s bylayer
!ctrlfont_s_s
map_line_style dashfont_s_s bylayer
!短划线_S_S
map_line_style ctrlfont_mid_l bylayer
!控制线_mid_l
map_line_style intmit_lww_hidden bylayer
!intmit_lww_hidden
map_line_style pdfhidden_linestyle bylayer
!pdfhidden_linestyle
map_line_style phantomfont_s_s bylayer
!phantomfont_s_s
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
!map_font <1> <2>
!字体转换设置,值<1>是Pro/E里的字体名称,值<2>是Auto CAD里的字体名称。
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
map_font font ChangFangSong.ttf
map_font filled ChangFangSong.ttf
map_font isofont ChangFangSong.ttf
!☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
根据以上的配置文件,在导出时的界面如下:
请高手帮忙看看,
我要求不高,
只要全部bylayer就行了 |
|