View Single Post
01/29/24, 04:40 PM   #3
DakJaniels
AddOn Author - Click to view addons
Join Date: Mar 2021
Posts: 31
batch convert fonts

If the tool is the same as the one from the demo, you can use this in a .bat to convert all .ttf & .otf files in the folder as the slugfont.exe

Code:
@echo off
for %%i in (*.ttf, *.otf) do (
    .\slugfont.exe "%%i" -o "%%~ni.slug"
)
might be useful for someone.
  Reply With Quote