Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Public Member Functions
Zend_Pdf_Cmap_ByteEncoding_Static Class Reference
Inheritance diagram for Zend_Pdf_Cmap_ByteEncoding_Static:
Zend_Pdf_Cmap_ByteEncoding Zend_Pdf_Cmap

Public Member Functions

 __construct ($cmapData)
 
- Public Member Functions inherited from Zend_Pdf_Cmap_ByteEncoding
 glyphNumbersForCharacters ($characterCodes)
 
 glyphNumberForCharacter ($characterCode)
 
 getCoveredCharacters ()
 
 getCoveredCharactersGlyphs ()
 
 __construct ($cmapData)
 
- Public Member Functions inherited from Zend_Pdf_Cmap
 __construct ($cmapData)
 
 glyphNumbersForCharacters ($characterCodes)
 
 glyphNumberForCharacter ($characterCode)
 
 getCoveredCharacters ()
 
 getCoveredCharactersGlyphs ()
 

Additional Inherited Members

- Static Public Member Functions inherited from Zend_Pdf_Cmap
static cmapWithTypeData ($cmapType, $cmapData)
 
- Data Fields inherited from Zend_Pdf_Cmap
const TYPE_BYTE_ENCODING = 0x00
 
const TYPE_HIGH_BYTE_MAPPING = 0x02
 
const TYPE_SEGMENT_TO_DELTA = 0x04
 
const TYPE_TRIMMED_TABLE = 0x06
 
const TYPE_MIXED_COVERAGE = 0x08
 
const TYPE_TRIMMED_ARRAY = 0x0a
 
const TYPE_SEGMENTED_COVERAGE = 0x0c
 
const TYPE_BYTE_ENCODING_STATIC = 0xf1
 
const TYPE_UNKNOWN = 0xff
 
const MISSING_CHARACTER_GLYPH = 0x00
 
- Protected Member Functions inherited from Zend_Pdf_Cmap
 _extractInt2 (&$data, $index)
 
 _extractUInt2 (&$data, $index)
 
 _extractUInt4 (&$data, $index)
 
- Protected Attributes inherited from Zend_Pdf_Cmap_ByteEncoding
 $_glyphIndexArray = array()
 

Detailed Description

Definition at line 38 of file Static.php.

Constructor & Destructor Documentation

◆ __construct()

__construct (   $cmapData)

Object constructor

Parameters
array$cmapDataArray whose keys are Unicode character codes and values are glyph numbers.
Exceptions
Zend_Pdf_Exception

Definition at line 52 of file Static.php.

53  {
54  if (! is_array($cmapData)) {
55  #require_once 'Zend/Pdf/Exception.php';
56  throw new Zend_Pdf_Exception('Constructor parameter must be an array',
58  }
59  $this->_glyphIndexArray = $cmapData;
60  }
const BAD_PARAMETER_TYPE
Definition: Exception.php:79

The documentation for this class was generated from the following file: