Browse Source

Modify render.sh to display text in all font instances.

The input is also now read from a text file.
Roozbeh Pournader 10 years ago
parent
commit
1479164b3d
1 changed files with 24 additions and 4 deletions
  1. 24 4
      scripts/render.sh

+ 24 - 4
scripts/render.sh

@@ -14,15 +14,35 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-
 HARFBUZZ=$HOME/harfbuzz
 
+input_file=$1
+
 function render {
- echo weT͟Hər | $HARFBUZZ/util/hb-view --font-file=$1 --output-format=png --output-file=$2.png
+ cat $input_file | $HARFBUZZ/util/hb-view --font-file=$1 --output-format=png --output-file=$2.png
 }
 
-render ../out/RobotoTTF/Roboto-Regular.ttf original
-render Roboto-Regular.ttf modified
+render ../hinted/Roboto-Thin.ttf 100
+render ../hinted/Roboto-Light.ttf 300
+render ../hinted/Roboto-Regular.ttf 400
+render ../hinted/Roboto-Medium.ttf 500
+render ../hinted/Roboto-Bold.ttf 700
+render ../hinted/Roboto-Black.ttf 900
+
+render ../hinted/Roboto-ThinItalic.ttf i100
+render ../hinted/Roboto-LightItalic.ttf i300
+render ../hinted/Roboto-Italic.ttf i400
+render ../hinted/Roboto-MediumItalic.ttf i500
+render ../hinted/Roboto-BoldItalic.ttf i700
+render ../hinted/Roboto-BlackItalic.ttf i900
+
+render ../hinted/RobotoCondensed-Light.ttf c300
+render ../hinted/RobotoCondensed-Regular.ttf c400
+render ../hinted/RobotoCondensed-Bold.ttf c700
+
+render ../hinted/RobotoCondensed-LightItalic.ttf ci300
+render ../hinted/RobotoCondensed-Italic.ttf ci400
+render ../hinted/RobotoCondensed-BoldItalic.ttf ci700
 
 eog *.png