-
WIBUHAX0R1337
-
/
home
/
cideo
/
library
/
Zend
/
Pdf
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
Cmap
--
NONE
Color
--
NONE
Element
--
NONE
ElementFactory
--
NONE
FileParser
--
NONE
FileParserDataSource
--
NONE
Filter
--
NONE
Parser
--
NONE
Resource
--
NONE
Trailer
--
NONE
Cmap.php
11.356KB
Edit File
Delete File
Rename
Color.php
1.476KB
Edit File
Delete File
Rename
Element.php
4.134KB
Edit File
Delete File
Rename
ElementFactory.php
11.844KB
Edit File
Delete File
Rename
Exception.php
8.829KB
Edit File
Delete File
Rename
FileParser.php
16.124KB
Edit File
Delete File
Rename
FileParserDataSource.php
6.119KB
Edit File
Delete File
Rename
Font.php
24.109KB
Edit File
Delete File
Rename
Image.php
7.742KB
Edit File
Delete File
Rename
Page.php
50.246KB
Edit File
Delete File
Rename
Parser.php
19.465KB
Edit File
Delete File
Rename
Resource.php
3.205KB
Edit File
Delete File
Rename
StringParser.php
21.685KB
Edit File
Delete File
Rename
Style.php
6.782KB
Edit File
Delete File
Rename
Trailer.php
3.05KB
Edit File
Delete File
Rename
UpdateInfoContainer.php
2.914KB
Edit File
Delete File
Rename
<?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. * * @package Zend_Pdf * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ /** Zend_Pdf_Element */ require_once 'Zend/Pdf/Element.php'; /** Zend_Pdf_Element_Object */ require_once 'Zend/Pdf/Element/Object.php'; /** Zend_Memory */ require_once 'Zend/Memory.php'; /** * Container which collects updated object info. * * @package Zend_Pdf * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Pdf_UpdateInfoContainer { /** * Object number * * @var integer */ private $_objNum; /** * Generation number * * @var integer */ private $_genNum; /** * Flag, which signals, that object is free * * @var boolean */ private $_isFree; /** * String representation of the object * * @var Zend_Memory_Container|null */ private $_dump = null; /** * Object constructor * * @param integer $objCount */ public function __construct($objNum, $genNum, $isFree, $dump = null) { $this->_objNum = $objNum; $this->_genNum = $genNum; $this->_isFree = $isFree; if ($dump !== null) { if (strlen($dump) > 1024) { $this->_dump = Zend_Pdf::getMemoryManager()->create($dump); } else { $this->_dump = $dump; } } } /** * Get object number * * @return integer */ public function getObjNum() { return $this->_objNum; } /** * Get generation number * * @return integer */ public function getGenNum() { return $this->_genNum; } /** * Check, that object is free * * @return boolean */ public function isFree() { return $this->_isFree; } /** * Get string representation of the object * * @return string */ public function getObjectDump() { if ($this->_dump === null) { return ''; } if (is_string($this->_dump)) { return $this->_dump; } return $this->_dump->getRef(); } }
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat