Skip to content
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

Restore POST table subsetting #16

Merged
merged 1 commit into from
Apr 29, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/freetypy/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,11 +343,11 @@ def _subset_format2(self, glyphs):
if gind < numglyphs:
offset = i + 2 * gind
name_index, = struct.unpack('>H', content[offset:offset+2])
if name_index < n_basic_names:
if name_index < N_BASIC_NAMES:
new_glyph_index[gind] = name_index
elif (name_index >= n_basic_names and
name_index < numglyphs - n_basic_names):
needed_indices[name_index - n_basic_names] = gind
elif (name_index >= N_BASIC_NAMES and
name_index < numglyphs - N_BASIC_NAMES):
needed_indices[name_index - N_BASIC_NAMES] = gind

names = []
name_index = 0
Expand All @@ -358,7 +358,7 @@ def _subset_format2(self, glyphs):
if name_index in needed_indices:
name = content[i:i+name_length]
new_glyph_index[needed_indices[name_index]] = (
len(names) + n_basic_names)
len(names) + N_BASIC_NAMES)
names.append(name)
i += name_length
name_index += 1
Expand All @@ -375,7 +375,7 @@ def _subset_format2(self, glyphs):
return b''.join(new_content)

def subset(self, glyphs):
if self.format == 0x20000 and False:
if self.format == 0x20000:
self.content = self._subset_format2(glyphs)


Expand Down