* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\Module\PsxDesign\Converter; use PrestaShop\Module\PsxDesign\DTO\PsxDesignLogoTextData; if (!defined('_PS_VERSION_')) { exit; } interface TextToImageConverterInterface { /** * @param PsxDesignLogoTextData $logoData * * @return string */ public function convertToImage(PsxDesignLogoTextData $logoData): string; }