![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/app/code/Chronopost/Chronorelais/Lib/Fpdi/PdfParser/Type/ |
<?php /** * This file is part of FPDI * * @package Chronopost\Chronorelais\Lib\Fpdi * @copyright Copyright (c) 2020 Chronopost\Chronorelais\Lib GmbH & Co. KG (https://www.Chronopost\Chronorelais\Lib.com) * @license http://opensource.org/licenses/mit-license The MIT License */ namespace Chronopost\Chronorelais\Lib\Fpdi\PdfParser\Type; use Chronopost\Chronorelais\Lib\Fpdi\PdfParser\StreamReader; use Chronopost\Chronorelais\Lib\Fpdi\PdfParser\Tokenizer; /** * Class representing a PDF name object * * @package Chronopost\Chronorelais\Lib\Fpdi\PdfParser\Type */ class PdfName extends PdfType { /** * Parses a name object from the passed tokenizer and stream-reader. * * @param Tokenizer $tokenizer * @param StreamReader $streamReader * @return self */ public static function parse(Tokenizer $tokenizer, StreamReader $streamReader) { $v = new self; if (\strspn($streamReader->getByte(), "\x00\x09\x0A\x0C\x0D\x20()<>[]{}/%") === 0) { $v->value = (string) $tokenizer->getNextToken(); return $v; } $v->value = ''; return $v; } /** * Unescapes a name string. * * @param string $value * @return string */ static public function unescape($value) { if (strpos($value, '#') === false) return $value; return preg_replace_callback('/#([a-fA-F\d]{2})/', function($matches) { return chr(hexdec($matches[1])); }, $value); } /** * Helper method to create an instance. * * @param string $string * @return self */ public static function create($string) { $v = new self; $v->value = $string; return $v; } /** * Ensures that the passed value is a PdfName instance. * * @param mixed $name * @return self * @throws PdfTypeException */ public static function ensure($name) { return PdfType::ensureType(self::class, $name, 'Name value expected.'); } }