-
Hi, How do I remove a specific name table entry from a font file? something like: Thanks a lot in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
cmyr
Oct 10, 2023
Replies: 1 comment 1 reply
-
This isn't really something that we've had to deal with yet, hence no implementation. Your best bet might be to use the built in You could also construct the namerecord that you want to remove, and then pass it to |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rsheeter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This isn't really something that we've had to deal with yet, hence no implementation.
Your best bet might be to use the built in
BTreeSet::retain
method on thename_record
collection.You could also construct the namerecord that you want to remove, and then pass it to
BTreeSet::remove
.