Roozbeh Pournader 1b5bd3862e Fix the glyph for U+3A34 in DroidSansFallbackFull.ttf.
The old glyph had its right part using a wrong component. The right
component was available in the font. The following script was used to fix
the issue:

from fontTools import ttLib
from nototools import subset
font = ttLib.TTFont('DroidSansFallbackFull.ttf', lazy=False)
glyf_table = font['glyf']
glyph = glyf_table['uni3A34']
for component in glyph.components:
    if component.glyphName == 'glyph45821':
        component.glyphName = 'glyph30895'
glyph.recalcBounds(glyf_table)
font.save('DroidSansFallbackFull.ttf-fixed')
subset.subset_font(
    'DroidSansFallbackFull.ttf-fixed', 'DroidSansFallbackFull.ttf-subset')

The font footprint is reduced by 12KB mostly due to removing unneeded glyph
paddings.

Bug: 15149504
Change-Id: I914ec89435caadbeaa321e10fb0848f181fef667
2014-07-25 10:23:47 -07:00
..
2013-10-14 09:29:11 -07:00
2014-06-11 15:37:02 -07:00

Copyright (C) 2008 The Android Open Source Project

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
  
     http://www.apache.org/licenses/LICENSE-2.0
  
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

##########

This directory contains the fonts for the platform. They are licensed
under the Apache 2 license.