본문 바로가기

PTC-Pro Engineer

PRO-E 에서, DWG 변환시 선색깔이나, 폰트, 레이어 변경관련.

반응형

1.
dxf_export.pro 
   파일이 필요함.


2.
Default 파일은 아래 경로에 저장되어 있는데...
D:\Ptc\proeWildfire\text\intf_configs  
Default 파일내용은 쓸모없음.

3.
그리고, config.pro 에서, dxf_export.pro 의 위치가 지정되어 있어야 함.
(config.pro 에서 설정 옵션값 : dxf_export_mapping_file)


4.
dxf_export.pro  파일의 내용은 다음과 같은데, 이건 내가 개인적으로 설정한것.

! This is a DXF/DWG export mapping file example.
! It should be used as a reference for mapping
! color/layer/linestyle/text font functionality
!===================================================================
map_color       BACKGROUND_COLOR          7
map_color       DIMMED_COLOR              8
map_color       LETTER_COLOR              4
map_color       HIGHLIGHT_COLOR           7
map_color       EDGE_HIGHLIGHT_COLOR      7
map_color       GEOMETRY_COLOR            7
map_color       HIDDEN_COLOR              3
map_color       SHEETMETAL_COLOR          7
map_color       CURVE_COLOR               6
map_color       VOLUME_COLOR              6
map_color       SECTION_COLOR             3
map_color       PRESEL_HIGHLIGHT_COLOR    7
map_color       SELECTED_COLOR            7
map_color       SECONDARY_SELECTED_COLOR  7
map_color       PREVIEW_GEOM_COLOR        7
map_color       SECONDARY_PREVIEW_COLOR   7
map_color       DATUM_COLOR               2
map_color       QUILT_COLOR               6

map_layer       3_ALL_AXES                CL
map_layer       7_ALL_FEATURES            0
map_layer       DXF_HIDDEN_LINE           HL
map_layer       9_DEF_DIMS                D
map_layer       9_DEF_NOTE                D
map_layer       DEFAULT_2                 D
map_layer       DEFAULT_3                 PL
map_layer       8_ALL_NOTES_BALLONS_SYMBOLS_GT               0
! 8_ALL_NOTES_BALLONS_SYMBOLS_GT : PRO-E 도면 포맷에서, 공차테이블

map_layer       DXF_FORMAT                9

map_line_style  solidfont                 bylayer
map_line_style  phantomfont               bylayer
map_line_style  ctrlfont                  bylayer
map_line_style  bylayerfont               bylayer
map_line_style  dashfont                  bylayer
map_line_style  ctrlfont_s_l              bylayer
map_line_style  ctrlfont_s_s              bylayer
map_line_style  ctrlfont_l_l              bylayer
map_line_style  dashfont_s_s              bylayer
map_line_style  phantomfont_s_s           bylayer
map_line_style  ctrlfont_mid_l            bylayer

map_font        font                      새굴림
map_font        filled                    새굴림
map_font        isofont                   새굴림

반응형