2016-12-03 00:03:50 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2016 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Google Author(s): Seigo Nonaka
|
|
|
|
*/
|
|
|
|
|
2016-12-03 00:11:37 +01:00
|
|
|
#ifndef HB_OT_CBDT_TABLE_HH
|
|
|
|
#define HB_OT_CBDT_TABLE_HH
|
2016-12-03 00:03:50 +01:00
|
|
|
|
|
|
|
#include "hb-open-type-private.hh"
|
|
|
|
|
|
|
|
namespace OT {
|
|
|
|
|
|
|
|
struct SmallGlyphMetrics
|
|
|
|
{
|
2016-12-03 04:25:54 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
2016-12-03 06:36:42 +01:00
|
|
|
inline void get_extents (hb_glyph_extents_t *extents) const
|
|
|
|
{
|
|
|
|
extents->x_bearing = bearingX;
|
|
|
|
extents->y_bearing = bearingY;
|
|
|
|
extents->width = width;
|
2016-12-05 03:56:24 +01:00
|
|
|
extents->height = -height;
|
2016-12-03 06:36:42 +01:00
|
|
|
}
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT8 height;
|
|
|
|
HBUINT8 width;
|
|
|
|
HBINT8 bearingX;
|
|
|
|
HBINT8 bearingY;
|
|
|
|
HBUINT8 advance;
|
2016-12-03 00:03:50 +01:00
|
|
|
|
|
|
|
DEFINE_SIZE_STATIC(5);
|
|
|
|
};
|
|
|
|
|
2016-12-05 04:43:33 +01:00
|
|
|
struct BigGlyphMetrics : SmallGlyphMetrics
|
|
|
|
{
|
2018-01-10 03:07:30 +01:00
|
|
|
HBINT8 vertBearingX;
|
|
|
|
HBINT8 vertBearingY;
|
|
|
|
HBUINT8 vertAdvance;
|
2016-12-05 04:43:33 +01:00
|
|
|
|
|
|
|
DEFINE_SIZE_STATIC(8);
|
|
|
|
};
|
|
|
|
|
2016-12-03 04:25:54 +01:00
|
|
|
struct SBitLineMetrics
|
|
|
|
{
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
HBINT8 ascender;
|
|
|
|
HBINT8 decender;
|
|
|
|
HBUINT8 widthMax;
|
|
|
|
HBINT8 caretSlopeNumerator;
|
|
|
|
HBINT8 caretSlopeDenominator;
|
|
|
|
HBINT8 caretOffset;
|
|
|
|
HBINT8 minOriginSB;
|
|
|
|
HBINT8 minAdvanceSB;
|
|
|
|
HBINT8 maxBeforeBL;
|
|
|
|
HBINT8 minAfterBL;
|
|
|
|
HBINT8 padding1;
|
|
|
|
HBINT8 padding2;
|
2016-12-03 00:03:50 +01:00
|
|
|
|
|
|
|
DEFINE_SIZE_STATIC(12);
|
|
|
|
};
|
|
|
|
|
2016-12-05 04:12:52 +01:00
|
|
|
|
2016-12-03 00:03:50 +01:00
|
|
|
/*
|
|
|
|
* Index Subtables.
|
|
|
|
*/
|
2016-12-05 04:12:52 +01:00
|
|
|
|
2016-12-03 06:36:42 +01:00
|
|
|
struct IndexSubtableHeader
|
2016-12-03 00:03:50 +01:00
|
|
|
{
|
2016-12-03 06:36:42 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this));
|
|
|
|
}
|
2016-12-03 00:03:50 +01:00
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 indexFormat;
|
|
|
|
HBUINT16 imageFormat;
|
|
|
|
HBUINT32 imageDataOffset;
|
2016-12-03 04:25:54 +01:00
|
|
|
|
|
|
|
DEFINE_SIZE_STATIC(8);
|
2016-12-03 00:03:50 +01:00
|
|
|
};
|
|
|
|
|
2016-12-05 04:26:54 +01:00
|
|
|
template <typename OffsetType>
|
|
|
|
struct IndexSubtableFormat1Or3
|
2016-12-03 00:03:50 +01:00
|
|
|
{
|
2016-12-03 06:36:42 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int glyph_count) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
c->check_array (offsetArrayZ, offsetArrayZ[0].static_size, glyph_count + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get_image_data (unsigned int idx,
|
|
|
|
unsigned int *offset,
|
|
|
|
unsigned int *length) const
|
|
|
|
{
|
|
|
|
if (unlikely (offsetArrayZ[idx + 1] <= offsetArrayZ[idx]))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*offset = header.imageDataOffset + offsetArrayZ[idx];
|
|
|
|
*length = offsetArrayZ[idx + 1] - offsetArrayZ[idx];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
IndexSubtableHeader header;
|
2016-12-05 04:26:54 +01:00
|
|
|
Offset<OffsetType> offsetArrayZ[VAR];
|
2016-12-03 04:25:54 +01:00
|
|
|
|
|
|
|
DEFINE_SIZE_ARRAY(8, offsetArrayZ);
|
2016-12-03 00:03:50 +01:00
|
|
|
};
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
struct IndexSubtableFormat1 : IndexSubtableFormat1Or3<HBUINT32> {};
|
|
|
|
struct IndexSubtableFormat3 : IndexSubtableFormat1Or3<HBUINT16> {};
|
2016-12-05 04:26:54 +01:00
|
|
|
|
2016-12-03 06:36:42 +01:00
|
|
|
struct IndexSubtable
|
|
|
|
{
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int glyph_count) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
if (!u.header.sanitize (c)) return_trace (false);
|
|
|
|
switch (u.header.indexFormat) {
|
|
|
|
case 1: return_trace (u.format1.sanitize (c, glyph_count));
|
2016-12-05 04:26:54 +01:00
|
|
|
case 3: return_trace (u.format3.sanitize (c, glyph_count));
|
2016-12-03 06:36:42 +01:00
|
|
|
default:return_trace (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool get_extents (hb_glyph_extents_t *extents) const
|
|
|
|
{
|
|
|
|
switch (u.header.indexFormat) {
|
|
|
|
case 2: case 5: /* TODO */
|
|
|
|
case 1: case 3: case 4: /* Variable-metrics formats do not have metrics here. */
|
|
|
|
default:return (false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get_image_data (unsigned int idx,
|
|
|
|
unsigned int *offset,
|
|
|
|
unsigned int *length,
|
|
|
|
unsigned int *format) const
|
|
|
|
{
|
|
|
|
*format = u.header.imageFormat;
|
|
|
|
switch (u.header.indexFormat) {
|
|
|
|
case 1: return u.format1.get_image_data (idx, offset, length);
|
2016-12-05 04:26:54 +01:00
|
|
|
case 3: return u.format3.get_image_data (idx, offset, length);
|
2016-12-03 06:36:42 +01:00
|
|
|
default: return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
union {
|
|
|
|
IndexSubtableHeader header;
|
|
|
|
IndexSubtableFormat1 format1;
|
2016-12-05 04:26:54 +01:00
|
|
|
IndexSubtableFormat3 format3;
|
2016-12-05 04:43:33 +01:00
|
|
|
/* TODO: Format 2, 4, 5. */
|
2016-12-03 06:36:42 +01:00
|
|
|
} u;
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_UNION (8, header);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct IndexSubtableRecord
|
|
|
|
{
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
firstGlyphIndex <= lastGlyphIndex &&
|
|
|
|
offsetToSubtable.sanitize (c, this, lastGlyphIndex - firstGlyphIndex + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool get_extents (hb_glyph_extents_t *extents) const
|
|
|
|
{
|
|
|
|
return (this+offsetToSubtable).get_extents (extents);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get_image_data (unsigned int gid,
|
|
|
|
unsigned int *offset,
|
|
|
|
unsigned int *length,
|
|
|
|
unsigned int *format) const
|
|
|
|
{
|
|
|
|
if (gid < firstGlyphIndex || gid > lastGlyphIndex)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return (this+offsetToSubtable).get_image_data (gid - firstGlyphIndex,
|
|
|
|
offset, length, format);
|
|
|
|
}
|
|
|
|
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 firstGlyphIndex;
|
|
|
|
HBUINT16 lastGlyphIndex;
|
2017-01-23 05:28:56 +01:00
|
|
|
LOffsetTo<IndexSubtable> offsetToSubtable;
|
2016-12-03 06:36:42 +01:00
|
|
|
|
|
|
|
DEFINE_SIZE_STATIC(8);
|
|
|
|
};
|
|
|
|
|
2016-12-03 00:03:50 +01:00
|
|
|
struct IndexSubtableArray
|
|
|
|
{
|
2016-12-03 05:12:57 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2016-12-05 04:36:30 +01:00
|
|
|
if (unlikely (!c->check_array (&indexSubtablesZ, indexSubtablesZ[0].static_size, count)))
|
2016-12-03 06:36:42 +01:00
|
|
|
return_trace (false);
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
if (unlikely (!indexSubtablesZ[i].sanitize (c, this)))
|
|
|
|
return_trace (false);
|
|
|
|
return_trace (true);
|
2016-12-03 05:12:57 +01:00
|
|
|
}
|
|
|
|
|
2016-12-03 00:03:50 +01:00
|
|
|
public:
|
2016-12-03 06:36:42 +01:00
|
|
|
const IndexSubtableRecord* find_table (hb_codepoint_t glyph, unsigned int numTables) const
|
2016-12-03 00:03:50 +01:00
|
|
|
{
|
2016-12-03 04:25:54 +01:00
|
|
|
for (unsigned int i = 0; i < numTables; ++i)
|
|
|
|
{
|
|
|
|
unsigned int firstGlyphIndex = indexSubtablesZ[i].firstGlyphIndex;
|
|
|
|
unsigned int lastGlyphIndex = indexSubtablesZ[i].lastGlyphIndex;
|
2016-12-03 00:03:50 +01:00
|
|
|
if (firstGlyphIndex <= glyph && glyph <= lastGlyphIndex) {
|
2016-12-03 04:25:54 +01:00
|
|
|
return &indexSubtablesZ[i];
|
2016-12-03 00:03:50 +01:00
|
|
|
}
|
|
|
|
}
|
2017-10-15 12:11:08 +02:00
|
|
|
return nullptr;
|
2016-12-03 00:03:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2016-12-03 06:36:42 +01:00
|
|
|
IndexSubtableRecord indexSubtablesZ[VAR];
|
2016-12-03 05:12:57 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY(0, indexSubtablesZ);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BitmapSizeTable
|
|
|
|
{
|
2016-12-05 04:12:52 +01:00
|
|
|
friend struct CBLC;
|
|
|
|
|
2016-12-03 05:12:57 +01:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
indexSubtableArrayOffset.sanitize (c, base, numberOfIndexSubtables) &&
|
|
|
|
c->check_range (&(base+indexSubtableArrayOffset), indexTablesSize) &&
|
|
|
|
horizontal.sanitize (c) &&
|
|
|
|
vertical.sanitize (c));
|
|
|
|
}
|
|
|
|
|
2016-12-05 04:12:52 +01:00
|
|
|
const IndexSubtableRecord *find_table (hb_codepoint_t glyph, const void *base) const
|
|
|
|
{
|
|
|
|
return (base+indexSubtableArrayOffset).find_table (glyph, numberOfIndexSubtables);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2017-01-23 05:28:56 +01:00
|
|
|
LOffsetTo<IndexSubtableArray> indexSubtableArrayOffset;
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT32 indexTablesSize;
|
|
|
|
HBUINT32 numberOfIndexSubtables;
|
|
|
|
HBUINT32 colorRef;
|
2016-12-03 05:12:57 +01:00
|
|
|
SBitLineMetrics horizontal;
|
|
|
|
SBitLineMetrics vertical;
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 startGlyphIndex;
|
|
|
|
HBUINT16 endGlyphIndex;
|
|
|
|
HBUINT8 ppemX;
|
|
|
|
HBUINT8 ppemY;
|
|
|
|
HBUINT8 bitDepth;
|
|
|
|
HBINT8 flags;
|
2016-12-03 05:12:57 +01:00
|
|
|
|
2017-11-15 04:54:48 +01:00
|
|
|
public:
|
2016-12-03 05:12:57 +01:00
|
|
|
DEFINE_SIZE_STATIC(48);
|
2016-12-03 00:03:50 +01:00
|
|
|
};
|
|
|
|
|
2016-12-05 04:12:52 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Glyph Bitmap Data Formats.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct GlyphBitmapDataFormat17
|
|
|
|
{
|
|
|
|
SmallGlyphMetrics glyphMetrics;
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT32 dataLen;
|
|
|
|
HBUINT8 dataZ[VAR];
|
2016-12-05 04:12:52 +01:00
|
|
|
|
|
|
|
DEFINE_SIZE_ARRAY(9, dataZ);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-12-03 00:03:50 +01:00
|
|
|
/*
|
|
|
|
* CBLC -- Color Bitmap Location Table
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define HB_OT_TAG_CBLC HB_TAG('C','B','L','C')
|
|
|
|
|
|
|
|
struct CBLC
|
|
|
|
{
|
2017-11-15 04:54:48 +01:00
|
|
|
friend struct CBDT;
|
|
|
|
|
2016-12-03 00:03:50 +01:00
|
|
|
static const hb_tag_t tableTag = HB_OT_TAG_CBLC;
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2016-12-03 04:25:54 +01:00
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
likely (version.major == 2 || version.major == 3) &&
|
2016-12-03 05:12:57 +01:00
|
|
|
sizeTables.sanitize (c, this));
|
2016-12-03 00:03:50 +01:00
|
|
|
}
|
|
|
|
|
2017-11-15 04:54:48 +01:00
|
|
|
protected:
|
2016-12-05 04:12:52 +01:00
|
|
|
const IndexSubtableRecord *find_table (hb_codepoint_t glyph,
|
|
|
|
unsigned int *x_ppem, unsigned int *y_ppem) const
|
2016-12-03 00:03:50 +01:00
|
|
|
{
|
2016-12-05 04:12:52 +01:00
|
|
|
/* TODO: Make it possible to select strike. */
|
|
|
|
|
2016-12-03 04:25:54 +01:00
|
|
|
unsigned int count = sizeTables.len;
|
2016-12-05 04:12:52 +01:00
|
|
|
for (uint32_t i = 0; i < count; ++i)
|
|
|
|
{
|
2016-12-03 04:25:54 +01:00
|
|
|
unsigned int startGlyphIndex = sizeTables.array[i].startGlyphIndex;
|
|
|
|
unsigned int endGlyphIndex = sizeTables.array[i].endGlyphIndex;
|
2016-12-05 04:12:52 +01:00
|
|
|
if (startGlyphIndex <= glyph && glyph <= endGlyphIndex)
|
|
|
|
{
|
2016-12-05 04:43:33 +01:00
|
|
|
*x_ppem = sizeTables[i].ppemX;
|
|
|
|
*y_ppem = sizeTables[i].ppemY;
|
|
|
|
return sizeTables[i].find_table (glyph, this);
|
2016-12-03 00:03:50 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-05 04:12:52 +01:00
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
return nullptr;
|
2016-12-03 00:03:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2017-01-23 05:31:53 +01:00
|
|
|
FixedVersion<> version;
|
|
|
|
LArrayOf<BitmapSizeTable> sizeTables;
|
2016-12-03 00:03:50 +01:00
|
|
|
|
2016-12-03 04:25:54 +01:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY(8, sizeTables);
|
2016-12-03 00:03:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CBDT -- Color Bitmap Data Table
|
|
|
|
*/
|
|
|
|
#define HB_OT_TAG_CBDT HB_TAG('C','B','D','T')
|
|
|
|
|
|
|
|
struct CBDT
|
|
|
|
{
|
|
|
|
static const hb_tag_t tableTag = HB_OT_TAG_CBDT;
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2016-12-03 04:25:54 +01:00
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
likely (version.major == 2 || version.major == 3));
|
2016-12-03 00:03:50 +01:00
|
|
|
}
|
|
|
|
|
2017-11-15 04:47:31 +01:00
|
|
|
struct accelerator_t
|
|
|
|
{
|
|
|
|
inline void init (hb_face_t *face)
|
|
|
|
{
|
|
|
|
upem = face->get_upem();
|
|
|
|
|
2018-01-09 15:48:51 +01:00
|
|
|
cblc_blob = Sanitizer<CBLC>().sanitize (face->reference_table (HB_OT_TAG_CBLC));
|
|
|
|
cbdt_blob = Sanitizer<CBDT>().sanitize (face->reference_table (HB_OT_TAG_CBDT));
|
2017-11-15 04:47:31 +01:00
|
|
|
cbdt_len = hb_blob_get_length (cbdt_blob);
|
|
|
|
|
|
|
|
if (hb_blob_get_length (cblc_blob) == 0) {
|
|
|
|
cblc = nullptr;
|
|
|
|
cbdt = nullptr;
|
|
|
|
return; /* Not a bitmap font. */
|
|
|
|
}
|
|
|
|
cblc = Sanitizer<CBLC>::lock_instance (cblc_blob);
|
|
|
|
cbdt = Sanitizer<CBDT>::lock_instance (cbdt_blob);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void fini (void)
|
|
|
|
{
|
|
|
|
hb_blob_destroy (this->cblc_blob);
|
|
|
|
hb_blob_destroy (this->cbdt_blob);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool get_extents (hb_codepoint_t glyph, hb_glyph_extents_t *extents) const
|
|
|
|
{
|
|
|
|
unsigned int x_ppem = upem, y_ppem = upem; /* TODO Use font ppem if available. */
|
|
|
|
|
|
|
|
if (!cblc)
|
|
|
|
return false; // Not a color bitmap font.
|
|
|
|
|
|
|
|
const IndexSubtableRecord *subtable_record = this->cblc->find_table(glyph, &x_ppem, &y_ppem);
|
|
|
|
if (!subtable_record || !x_ppem || !y_ppem)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (subtable_record->get_extents (extents))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
unsigned int image_offset = 0, image_length = 0, image_format = 0;
|
|
|
|
if (!subtable_record->get_image_data (glyph, &image_offset, &image_length, &image_format))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
{
|
|
|
|
if (unlikely (image_offset > cbdt_len || cbdt_len - image_offset < image_length))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (image_format)
|
|
|
|
{
|
|
|
|
case 17: {
|
|
|
|
if (unlikely (image_length < GlyphBitmapDataFormat17::min_size))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const GlyphBitmapDataFormat17& glyphFormat17 =
|
|
|
|
StructAtOffset<GlyphBitmapDataFormat17> (this->cbdt, image_offset);
|
|
|
|
glyphFormat17.glyphMetrics.get_extents (extents);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// TODO: Support other image formats.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert to the font units. */
|
|
|
|
extents->x_bearing *= upem / (float) x_ppem;
|
|
|
|
extents->y_bearing *= upem / (float) y_ppem;
|
|
|
|
extents->width *= upem / (float) x_ppem;
|
|
|
|
extents->height *= upem / (float) y_ppem;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
hb_blob_t *cblc_blob;
|
|
|
|
hb_blob_t *cbdt_blob;
|
|
|
|
const CBLC *cblc;
|
|
|
|
const CBDT *cbdt;
|
|
|
|
|
|
|
|
unsigned int cbdt_len;
|
|
|
|
unsigned int upem;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-12-03 00:03:50 +01:00
|
|
|
protected:
|
2016-12-03 04:25:54 +01:00
|
|
|
FixedVersion<>version;
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT8 dataZ[VAR];
|
2016-12-03 04:25:54 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY(4, dataZ);
|
2016-12-03 00:03:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace OT */
|
|
|
|
|
2016-12-03 00:11:37 +01:00
|
|
|
#endif /* HB_OT_CBDT_TABLE_HH */
|