-
-
Notifications
You must be signed in to change notification settings - Fork 631
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Opentype #1723
base: master
Are you sure you want to change the base?
Opentype #1723
Conversation
Nice chunk of work! |
@DavBfr Currently I am trying follow fontkit which is used by pdfKit and it supports GSUB and GPOS. I am going through their files and got a rough idea how GSUB works, I am planning to implement INDIC Shaper and GSUB, but definitely still there are lot of things that I don't understand. I will try to reach out to fontkit maintainers to see if they can help me on this. |
@DavBfr Question: I saw the ttf_writer.drat, I believe thats the place were glyphInfo is added to the pdf doc, I find it difficult to understand exactly what changes needs to done there! so the question is if I can get you the glyphInfo and code points after gpos and gsub will you be able to continue rest of the work. To put it in simple terms if I create drat version of fontkit, will you able to integrate ? |
I don't really know how font script works. |
@@ -116,6 +116,18 @@ class TtfWriter { | |||
|
|||
glyphsInfo.addAll(glyphsMap.values); | |||
|
|||
for (int i = 0; i < glyphsInfo.length; i++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is that for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is not needed.
No description provided.