Question

I added swatch images for my brand. Swatch view

I get swatch data in my template:

$swatchData = $block->getSwatchData();

Next step - I show image inside my template:

$swatchThumbPath = $block->getSwatchPath('swatch_thumb',
                        $swatchData['swatches'][$option]['value']); ?>
<img src="<?=$swatchThumbPath?>" alt="<?= /* @escapeNotVerified */ $label['label'] ?>">

But on page I have compressed picture 110x78 pixels:

enter image description here

How can I get full-sized picture from swatch data?

Was it helpful?

Solution

You can try using swatch_image

 $swatchImagePath = $block->getSwatchPath('swatch_image',
                        $swatchData['swatches'][$option]['value']);
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top