Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Use pybind11 in ttconv module#25253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -5,157 +5,80 @@ | ||
Python wrapper for TrueType conversion library in ../ttconv. | ||
*/ | ||
#include "mplutils.h" | ||
#include <pybind11/pybind11.h> | ||
#include "ttconv/pprdrv.h" | ||
#include <vector> | ||
namespace py = pybind11; | ||
/** | ||
* An implementation of TTStreamWriter that writes to a Python | ||
* file-like object. | ||
*/ | ||
class PythonFileWriter : public TTStreamWriter | ||
{ | ||
py::function_write_method; | ||
public: | ||
PythonFileWriter(py::object& file_object) | ||
: _write_method(file_object.attr("write")) {} | ||
virtual void write(const char *a) | ||
{ | ||
PyObject* decoded = PyUnicode_DecodeLatin1(a, strlen(a), ""); | ||
if (decoded == NULL) { | ||
throw py::error_already_set(); | ||
} | ||
_write_method(py::handle(decoded)); | ||
Py_DECREF(decoded); | ||
} | ||
}; | ||
static void convert_ttf_to_ps( | ||
const char *filename, | ||
py::object &output, | ||
int fonttype, | ||
py::iterable* glyph_ids) | ||
{ | ||
PythonFileWriteroutput_(output); | ||
std::vector<int> glyph_ids_; | ||
if (glyph_ids) { | ||
for (py::handle glyph_id: *glyph_ids) { | ||
glyph_ids_.push_back(glyph_id.cast<int>()); | ||
} | ||
} | ||
if (fonttype != 3 && fonttype != 42) { | ||
throw py::value_error( | ||
"fonttype must be either 3 (raw Postscript) or 42 (embedded Truetype)"); | ||
} | ||
try | ||
{ | ||
insert_ttfont(filename,output_, static_cast<font_type_enum>(fonttype), glyph_ids_); | ||
} | ||
catch (TTException &e) | ||
{ | ||
throw std::runtime_error(e.getMessage()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I am concerned that we don't exercise this line in the test suite as it would be good to confirm that | ||
} | ||
catch (...) | ||
{ | ||
throw std::runtime_error("Unknown C++ exception"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. This catch all isn't really needed as | ||
} | ||
} | ||
PYBIND11_MODULE(_ttconv, m) { | ||
m.doc() = "Module to handle converting and subsetting TrueType " | ||
"fonts to Postscript Type 3, Postscript Type 42 and " | ||
"Pdf Type 3 fonts."; | ||
m.def("convert_ttf_to_ps", &convert_ttf_to_ps, | ||
py::arg("filename"), | ||
py::arg("output"), | ||
py::arg("fonttype"), | ||
py::arg("glyph_ids") = py::none(), | ||
"Converts the Truetype font into a Type 3 or Type 42 Postscript font, " | ||
"optionally subsetting the font to only the desired set of characters.\n" | ||
"\n" | ||
@@ -169,25 +92,5 @@ static PyMethodDef ttconv_methods[] = | ||
"subsetting to a Type 3 font. If glyph_ids is not provided or is None, " | ||
"then all glyphs will be included. If any of the glyphs specified are " | ||
"composite glyphs, then the component glyphs will also be included." | ||
); | ||
} |