Current path: home/webdevt/cryptoimpot.fr/module/Application/src/Service/Factory/
?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/src/Service
<?php
namespace Application\Service\Factory;
use Psr\Container\ContainerInterface;
use Laminas\ServiceManager\Factory\FactoryInterface;
class FPDIFormulaire2048mFactory
{
public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
{
// \TCPDF_FONTS::addTTFfont(__DIR__.'/../../fonts/ArialNarrow.ttf', 'TrueTypeUnicode');
// \TCPDF_FONTS::addTTFfont(__DIR__.'/../../fonts/ArialNarrow-Bold.ttf', 'TrueTypeUnicode');
// \TCPDF_FONTS::addTTFfont(__DIR__.'/../../fonts/ArialNarrow-BoldItalic.ttf', 'TrueTypeUnicode');
// \TCPDF_FONTS::addTTFfont(__DIR__.'/../../fonts/ArialNarrow-Italic.ttf', 'TrueTypeUnicode');
return new \Application\Service\FPDIFormulaire2048m(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false, $container);
// return new \Application\Service\FPDIFormulaire2048m($container);
// return new \TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
}
}