LoginSignup
0
1

More than 5 years have passed since last update.

Eagleでシルク等の文字を一括で変換するスクリプト

Posted at

毎回忘れてググるのでメモ。
下記をスクリプト set_my_font.scr とかに保存して実行する。

# change all font parameters to my default
# https://www.element14.com/community/thread/31231/l/how-to-change-font-size-throughout-brd?displayFullThread=true

display torig borig;   # Display the top and bottom origins
group all;             # Group everything
smash (C>0 0);         # Smash everything in the group
display none tname bname tval bval; # OPTIONAL: limit changes to names and values
group all;             # Group everything including smashed texts.
change font vector (C>0 0); # Change the font to a vector font
change size 40mil (C>0 0); # Change the font size
change ratio 15 (C>0 0); # Change the width:height ratio
display last;

元ネタはこちら

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1