convert truetype fonts to klartext nc-code
Project description
type2nc - convert font outline to Klartext code
type2nc converts the outline of characters in a font file to Klartext code. The resulting nc program can be used on TNC controls to engrave text in the corresponding font. The nc program can be used similarly to the engraving cycle 225 with QS-parameters.
Contributors
drunsinn, TobFleischi, Klartext and GuggiJr
Forum
German: Industry Arena
Requirements
To use the resulting Klartext code on a control, it has to have the following cycles and functions:
- cycle 7
- cycle 10
- cycle 26
- INSTR
- STRLEN
- STRCOMP
- FN 9
- FN 10
- FN 12
- FN 18 ID210 NR2
- FN 18 ID220 NR2 IDX1 and 2
- FN 18 ID270 NR1 IDX1 and 2
For ease of use it is possible to use cycle 225 for parameter definition. If the
control has cycle 225 you can add use command line option --use_cycle_def
.
Testing was done on a machine with TNC 620 with software version 817600-03. As long as the requirements listed above are met, it should work fine. Support for smaller controls like TNC 128 is untested but the output does not contain any circular path's.
Installation
To be able to use type2nc, you need python 3 and the following library's installed on your system:
- numpy >=1.6.2
- scipy >=0.19.0
- freetype-py >=1.1
- argparse >=1.4.0
- Hershey-Fonts >= 2.1.0
Install from Python Packaging Index
To install type2nc and its dependencies from the Python Packaging Index, first install python3. After a successful setup, type
pip3 install type2nc
on the command line. To get freetype up and running, you might have to install the binary's for the library. On Linux and macOS, the library is probably already installed. For Windows, follow the instructions on this github repo.
Program Usage
-
First, choose a font that has the necessary characters you need. Not every font comes with all characters defined by the Unicode standard. If a character is not available in your font, it will be replaced with a placeholder. Some sources for fonts:
- https://fonts.google.com/
- https://www.google.com/get/noto/
- https://fontlibrary.org/
- http://www.fontspace.com/category/open
- https://www.theleagueofmoveabletype.com/
The library for reading Hershey Fonts comes bundled with a set of fonts. The GUI lets you select them individually as files or all by enabling the option "Include Default Hershey Fonts".
-
Make sure you have the necessary rights to use the font.
-
Open a command prompt and run python3 type2nc.py or double-click the
type2nc.py
file -
Select one or more font files and/or select the option to use the default Hersehy fonts
-
create and select an output folder for the results
-
enter a step size for the conversion. As the outline of a character consists of curves, these have to be broken down into smaller line segments. The smaller the selected step size, the smother the curves will be. A smaller step size can also increase the resulting file size (several hundred mb).
-
the program will read the font file and convert the outlines to Klartext code. This may take some time, depending on the step size selected earlier
-
When the program is finished, it will display some statistics about the generated code
-
After it is finished, you will find a nc program for every font file you selected earlier. There will also be a demo program called
type2nc_demo.H
with a usage example.
Command line interface
The program can also be used from the command line. To get information on the
available options, run python3 type2nc.py -h
Output:
`usage: type2nc.py [-h] [-i font input file [font input file ...]] [-o output folder] [-s step size] [-r] [-c] [-z]
Create Klartext NC code from font files
optional arguments: -h, --help show this help message and exit -i font input file [font input file ...], --input font input file [font input file ...] path of one or more font files -o output folder, --out output folder path to the output folder. If not set, use current directory. -s step size, --step_size step size step size: between 0.001 (very fine) and 0.2 (very coarse) -r, --remove_empty if set, output won't contain labels for empty chars. overrides -c -c, --reduce_empty if set, output will contain labels for empty characters but no actual data -z, --use_cycle_def if set, demo output will use cycle 225 for definition of parameters`
NC-Code Usage
The nc program uses the Q parameters also used by cycle 225:
- QS500: Text to engrave
- Q203: Z-coordinate of surface
- Q201: milling depth
- Q200: safe distance for rapid feed between characters
- Q206: plunging feed rate
- Q207: milling feed rate
- Q513: approximate height of the engraved text
- Q374: angle of the text base line
Internally the nc program uses the following parameters:
- QL10 to QL32: local Q-parameter for internal calculations
- QS1 and QS3: String-Parameter used as temporary storage
After setting the Q parameters, make a PGM CALL to the generated .H-file with the code for the selected font.
Known Issues / Problems
Missing Freetype library
On Windows, when you install freetype-py, the necessary dll files are not
installed automatically. When trying to run type2nc, you get an error message
ending in RuntimeError: Freetype library not found
. To fix this, follow
the instructions on this github repo.
Characters not availibel
To reduce the file size of the output file, it was chosen to limit the range of characters to specific sections of the Unicode standard:
- BASIC_LATIN: 0x0020 to 0x007E
- C1_CTRL_AND_LATIN1_SUPPLEMENT: 0x0080 to 0x00FF
- IPA_EEXTENTIONS: 0x0250 to 0x02AF
- GREEK_AND_COPTIC_CHARS: 0x0370 to 0x03FF
- CYRILLIC_CHARS: 0x0400 to 0x04FF
- CYRILLIC_SUPPLEMENT_CHARS: 0x0500 to 0x052F
- ARMENIAN_CHARS: 0x0530 to 0x058F
- HEBREW_CHARS: 0x0590 to 0x05FF
- ARABIC_CHARS: 0x0600 to 0x06FF
- SYRIAC_CHARS: 0x0700 to 0x074F
- ARABIC_SUPPLEMENT_CHARS: 0x0750 to 0x077F
- GENERAL_PUNCTUATION: 0x2000 to 0x206F
- ARROW_CHARS: 0x2190 to 0x21FF
- MATHEMATICAL_CHARS: 0x2200 to 0x22FF
- MISC_TECH_CHARS: 0x2300 to 0x23FF
- MISC_SYMBOLS: 0x2600 to 0x26FF
- DINGBATS: 0x2700 to 0x27BF
- CJK_UNIFIED_IDEOGRAPHS_PART1: 0x4E00 to 0x9FFF
This results in a total of 23535 characters
If you need more or other characters, let me know and i will add them.
Windows Installer
There is no All-In-One installer available. If there is enough interest, i may look into building an installer version.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file type2nc-0.6.3.tar.gz
.
File metadata
- Download URL: type2nc-0.6.3.tar.gz
- Upload date:
- Size: 21.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c69d27c46402e7c3b5ab03a746718333d61cf1daf15eb47cad849d9d81ec40fa |
|
MD5 | fd4267fce35244458385222d256233e6 |
|
BLAKE2b-256 | 1ac194f671fdf1da03ada5d8349e19a7354fb8b764b205da295ab13d7eb9dad6 |
File details
Details for the file type2nc-0.6.3-py3-none-any.whl
.
File metadata
- Download URL: type2nc-0.6.3-py3-none-any.whl
- Upload date:
- Size: 27.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b64e8ec0d39bf51092b6a848422c7742a9e29139ae2461f7ad1da46bfb8d6687 |
|
MD5 | 59d9d37dd19a77e45e399ef39221096d |
|
BLAKE2b-256 | b0e47afaee59f4a7f7a72c0228f13ad34d4864e756dbe8291d7a5b4557f56987 |