📄 gui_save_snapshots.tcl
字号:
###################################################################################################### ICC Design Planning RM## gui_save_snapshots.tcl: this is used in explore runs which opens GUI and saves snapshot as a file for each run and linked in HTML table.## please refer to the comments below which you can customize what objects to show or brightness of the snapshot.## Version 2007.03-SP5##################################################################################################### start GUI; this line is requireduplevel #0 gui_start# show congestion overlay; this line is requiredgui_set_setting -window [gui_get_current_window -types Layout -mru] -setting mmName -value AREAPARTITIONgui_execute_events# ------------------------------------------------------------------------------------------------------------------# You can add your own options like turn on cell or turn off PG here but remember to add "gui_execute_events"# For example,# change brightness on the layout windowgui_set_setting -window [gui_get_current_window -types Layout -mru] -setting brightness -value 50%gui_execute_events# change color on standard cellsgui_set_setting -window [gui_get_current_window -types Layout -mru] -setting colorCellCore -value gray25gui_execute_events# turn off PG strap displaygui_set_setting -window [gui_get_current_window -types Layout -mru] -setting showRoutedStrap -value falsegui_execute_events# turn off PG ring displaygui_set_setting -window [gui_get_current_window -types Layout -mru] -setting showRoutedRing -value falsegui_execute_events# turn off via displaygui_set_setting -window [gui_get_current_window -types Layout -mru] -setting showContact -value falsegui_execute_events# ------------------------------------------------------------------------------------------------------------------# save snapshots; this line is requiredgui_set_setting -window [gui_get_current_window -types Layout -mru] -setting viewshot -value ${REPORTS_DIR}/${run_num}_${objective}.png# stop GUI; this line is requiredgui_stop
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -