Pdf/Cmap/SegmentToDelta.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Pdf
- Subpackage
- Fonts
- Version
- $Id$
\Zend_Pdf_Cmap_SegmentToDelta
Package: Zend_Pdf\Fonts
Throws
Returns
Returns
Implements the "segment mapping to delta values" character map (type 4).
This is the Microsoft standard mapping table type for OpenType fonts. It
provides the ability to cover multiple contiguous ranges of the Unicode
character set, with the exception of Unicode Surrogates (U+D800 - U+DFFF).
- Parent(s)
- \Zend_Pdf_Cmap
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Properties
array $_glyphIndexArray = array()
Glyph index array. Stores glyph numbers, used with range offset.
Default value
array()
Details- Type
- array
integer $_searchIterations = 0
The number of binary search steps required to cover the entire search
range.
Default value
0
Details- Type
- integer
integer $_searchRange = 0
The size of the binary search range for segments.
Default value
0
Details- Type
- integer
integer $_searchRangeEndCode = 0
The ending character code for the segment at the end of the low search
range.
Default value
0
Details- Type
- integer
array $_segmentTableEndCodes = array()
Array of ending character codes for each segment.
Default value
array()
Details- Type
- array
array $_segmentTableIdDeltas = array()
Array of character code to glyph delta values for each segment.
Default value
array()
Details- Type
- array
array $_segmentTableIdRangeOffsets = array()
Array of offsets into the glyph index array for each segment.
Default value
array()
Details- Type
- array
Methods
__construct(string $cmapData) : void
Object constructor
Parses the raw binary table data. Throws an exception if the table is
malformed.
ParametersName | Type | Description |
---|---|---|
$cmapData | string | Raw binary cmap table data. |
Exception | Description |
---|---|
\Zend_Pdf_Exception |
getCoveredCharacters() : array
Returns an array containing the Unicode characters that have entries in this character map.
Returns
Type | Description |
---|---|
array | Unicode character codes. |
glyphNumberForCharacter(integer $characterCode) : integer
Returns the glyph number corresponding to the Unicode character.
If a particular character doesn't exist in this font, the special 'missing
character glyph' will be substituted.
See also {@link glyphNumbersForCharacters()} which is optimized for bulk
operations.
ParametersName | Type | Description |
---|---|---|
$characterCode | integer | Unicode character code (code point). |
Type | Description |
---|---|
integer | Glyph number. |
glyphNumbersForCharacters(array $characterCodes) : array
Returns an array of glyph numbers corresponding to the Unicode characters.
If a particular character doesn't exist in this font, the special 'missing
character glyph' will be substituted.
See also {@link glyphNumberForCharacter()}.
ParametersName | Type | Description |
---|---|---|
$characterCodes | array | Array of Unicode character codes (code points). |
Type | Description |
---|---|
array | Array of glyph numbers. |