You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`dehinter` is a Python command line application that removes TrueType instruction sets, global hinting tables, and other associated OpenType table data in font files. The tool provides cross-platform support on macOS, Windows, and Linux systems with a Python v3.6+ interpreter.
12
+
`dehinter` is a Python command line application that removes TrueType instruction sets, global hinting tables, and other associated OpenType table data in font files. The tool provides cross-platform support on macOS, Windows, and Linux systems with a Python v3.6+ interpreter.
13
13
14
14
## What it does
15
15
16
16
- Removes OpenType [glyf table](https://docs.microsoft.com/en-us/typography/opentype/spec/glyf) instruction set bytecode data
17
-
- Removes OpenType and other TTF hinting related tables
- Updates [head table](https://docs.microsoft.com/en-us/typography/opentype/spec/head) bit flags
@@ -77,21 +70,21 @@ Please report issues on the [project issue tracker](https://github.com/source-fo
77
70
78
71
## Contributing
79
72
80
-
Contributions are warmly welcomed. A development dependency environment can be installed in editable mode with the developer installation documentation above.
73
+
Contributions are warmly welcomed. A development dependency environment can be installed in editable mode with the developer installation documentation above.
81
74
82
75
Please use the standard Github pull request approach to propose source changes.
83
76
84
77
### Source file linting
85
78
86
-
Python source files are linted with `flake8`. See the Makefile `test-lint` target for details.
79
+
Python source files are linted with `flake8`. See the Makefile `test-lint` target for details.
87
80
88
81
### Source file static type checks
89
82
90
-
Static type checks are performed on Python source files with `pytype`. See the Makefile `test-type-check` target for details.
83
+
Static type checks are performed on Python source files with `pytype`. See the Makefile `test-type-check` target for details.
91
84
92
85
### Testing
93
86
94
-
The project runs continuous integration testing on [Travis CI](https://travis-ci.org/source-foundry/dehinter) and [Appveyor CI](https://ci.appveyor.com/project/chrissimpkins/dehinter) with the `pytest` and `tox` testing toolchain. Test modules are located in the `tests` directory of the repository.
87
+
The project runs continuous integration testing on [Travis CI](https://travis-ci.org/source-foundry/dehinter) and [Appveyor CI](https://ci.appveyor.com/project/chrissimpkins/dehinter) with the `pytest` and `tox` testing toolchain. Test modules are located in the `tests` directory of the repository.
95
88
96
89
Local testing by Python interpreter version can be performed with the following command executed from the root of the repository:
97
90
@@ -103,24 +96,24 @@ Please see the `tox` documentation for additional details.
103
96
104
97
### Test coverage
105
98
106
-
Unit test coverage is executed with the `coverage` tool. See the Makefile `test-coverage` target for details.
99
+
Unit test coverage is executed with the `coverage` tool. See the Makefile `test-coverage` target for details.
107
100
108
101
## Acknowledgments
109
102
110
103
`dehinter` is built with the fantastic [fontTools free software library](https://github.com/fonttools/fonttools) and is based on the dehinting approach used in the [`ttfautohint` free software project](https://www.freetype.org/ttfautohint/).
111
104
112
105
## License
113
106
114
-
Copyright 2019 Source Foundry Authors and Contributors
107
+
Copyright 2019 Source Foundry Authors and Contributors
115
108
116
-
Licensed under the Apache License, Version 2.0 (the "License");
117
-
you may not use this file except in compliance with the License.
118
-
You may obtain a copy of the License at
109
+
Licensed under the Apache License, Version 2.0 (the "License");
110
+
you may not use this file except in compliance with the License.
111
+
You may obtain a copy of the License at
119
112
120
113
http://www.apache.org/licenses/LICENSE-2.0
121
114
122
-
Unless required by applicable law or agreed to in writing, software
123
-
distributed under the License is distributed on an "AS IS" BASIS,
124
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
125
-
See the License for the specific language governing permissions and
126
-
limitations under the License.
115
+
Unless required by applicable law or agreed to in writing, software
116
+
distributed under the License is distributed on an "AS IS" BASIS,
117
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
118
+
See the License for the specific language governing permissions and
0 commit comments