Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
zendframework1
library
Zend
Pdf
Resource
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
40
abstract
class
Zend_Pdf_Resource_Image
extends
Zend_Pdf_Resource
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
Zend_Pdf_Resource_Image\getPixelHeight
getPixelHeight()
Zend_Pdf_Resource_Image\__construct
__construct()
Definition:
Image.php:45
Zend_Pdf_Resource_Image\getPixelWidth
getPixelWidth()
Zend_Pdf_Resource_Image
Definition:
Image.php:40
Zend_Pdf_Element_Name
Definition:
Name.php:35
Zend_Pdf_Resource
Definition:
Resource.php:30
Zend_Pdf_Resource_Image\getProperties
getProperties()