| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/abyogasms.com/vendor/tecnickcom/tc-lib-pdf/test/ |
Upload File : |
<?php
/**
* TestablePdfColor.php
*
* @since 2002-08-03
* @category Library
* @package Pdf
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2002-2026 Nicola Asuni - Tecnick.com LTD
* @license https://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-pdf
*
* This file is part of tc-lib-pdf software library.
*/
namespace Test;
class TestablePdfColor extends \Com\Tecnick\Pdf\PdfColor
{
/** @return array{0: string, 1: float}|null */
public function exposeParseSpotCssFunction(string $color): ?array
{
return $this->parseSpotCssFunction($color);
}
public function exposeParseSpotNameToken(#[\SensitiveParameter] string $token): string
{
return $this->parseSpotNameToken($token);
}
public function exposeParseSpotTintToken(#[\SensitiveParameter] string $token): ?float
{
return $this->parseSpotTintToken($token);
}
public function exposeIsRegisteredSpotColor(string $color): bool
{
return $this->isRegisteredSpotColor($color);
}
public function exposeGetPdfProcessColor(string $color, bool $stroke): string
{
return $this->getPdfProcessColor($color, $stroke);
}
public function exposeGetLabProcessColor(string $color): ?\Com\Tecnick\Color\Model\Lab
{
return $this->getLabProcessColor($color);
}
public function exposeGetPdfLabProcessColor(\Com\Tecnick\Color\Model\Lab $labColor, bool $stroke): string
{
return $this->getPdfLabProcessColor($labColor, $stroke);
}
}