Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Image.php
Go to the documentation of this file.
1 <?php
26 #require_once 'Zend/Pdf/Element/Name.php';
27 
28 
30 #require_once 'Zend/Pdf/Resource.php';
31 
32 
41 {
45  public function __construct()
46  {
47  parent::__construct('');
48 
49  $this->_resource->dictionary->Type = new Zend_Pdf_Element_Name('XObject');
50  $this->_resource->dictionary->Subtype = new Zend_Pdf_Element_Name('Image');
51  }
57  abstract public function getPixelHeight();
58 
64  abstract public function getPixelWidth();
65 
71  abstract public function getProperties();
72 }
73