{"id":111844,"date":"2018-02-09T13:51:29","date_gmt":"2018-02-09T13:51:29","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=111844"},"modified":"2024-02-22T13:30:11","modified_gmt":"2024-02-22T13:30:11","slug":"resize-product-image-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/","title":{"rendered":"Resize Product Image in Magento 2"},"content":{"rendered":"\n<p>Today we are discussing how to resize the product image using a block class in Magento 2.<br><strong>First,<\/strong> we will create a block class as below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Webkul\\CustomModule\\Block;\n\nclass ImageResize extends \\Magento\\Framework\\View\\Element\\Template\n{\n    \/**\n     *\n     * @var \\Magento\\Catalog\\Model\\ProductRepository\n     *\/\n    protected $_productRepository;\n    \/**\n     *\n     * @var \\Magento\\Catalog\\Helper\\Image\n     *\/\n    protected $_productImageHelper;\n     \n    \/**\n     * @param \\Magento\\Backend\\Block\\Template\\Context $context\n     * @param \\Magento\\Catalog\\Model\\ProductRepository $productRepository\n     * @param \\Magento\\Catalog\\Helper\\Image $productImageHelper\n     * @param array $data\n     *\/\n    public function __construct(\n        \\Magento\\Backend\\Block\\Template\\Context $context,        \n        \\Magento\\Catalog\\Model\\ProductRepository $productRepository,\n        \\Magento\\Catalog\\Helper\\Image $productImageHelper,\n        array $data = &#091;]\n    )\n    {\n        $this-&gt;_productRepository = $productRepository;\n        $this-&gt;_productImageHelper = $productImageHelper;\n        parent::__construct($context, $data);\n    }\n\n    \/**\n     * resize of the image\n     * @see \\Magento\\Catalog\\Model\\Product\\Image\n     * @param int $width\n     * @param int $height\n     * @return $this\n     *\/\n    public function resizeImage($id, $image_type, $width, $height = null)\n    {\n        $product = $this-&gt;_productRepository-&gt;getById($id);\n        $resizedImage = $this-&gt;_productImageHelper-&gt;init($product, $image_type)\n                                           -&gt;constrainOnly(TRUE)\n                                           -&gt;keepAspectRatio(TRUE)\n                                           -&gt;keepTransparency(TRUE)\n                                           -&gt;keepFrame(FALSE)\n                                           -&gt;resize($width, $height);\n        return $resizedImage;\n    }\n}<\/pre>\n\n\n\n<p>Here,&nbsp;<strong>$_productRepository<\/strong> is an object of <strong>Magento\\Catalog\\Model\\ProductRepository<\/strong> class and <strong>$_productImageHelper<\/strong> is an object of <strong>Magento\\Catalog\\Helper\\Image<\/strong> class.<\/p>\n\n\n\n<p>In the Function resizeImage, there are four parameters $id which is the id of the product, $image_type which can be &#8220;product_base_image&#8221; or &#8220;product_small_image&#8221;, &#8220;product_thumbnail_image&#8221; and $width, $height is the width and height of the image respectively.<\/p>\n\n\n\n<p><strong>constrainOnly<\/strong>-&gt; By default it is False. but if we set True that means the image will not be bigger than it was.<br>keepAspectRatio-&gt; By default it is True, which means image height and width will not be contorted.<br>keepFrame-&gt; keepFrame(False) will remove the background and set the image to the desired width\/height.<br>keepTransparency-&gt; By default, it is True, which means the image will not lose transparency.<\/p>\n\n\n\n<p><strong>Next,<\/strong> we will use that image in the corresponding template pthml file as below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\/\/Product ID\n$id = 1;\n\n$width = 250;\n$height = 400;\n\n$resizedImageUrl = $block-&gt;resizeImage($id, &#039;product_base_image&#039;, $width, $height)-&gt;getUrl();\n?&gt;\n&lt;img src=&quot;&lt;?php echo $resizedImageUrl;?&gt;&quot; alt=&quot;Alt Text&quot;\/&gt;<\/pre>\n\n\n\n<p>Hope it will help you. Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today we are discussing how to resize the product image using a block class in Magento 2.First, we will create a block class as below: Here,&nbsp;$_productRepository is an object of Magento\\Catalog\\Model\\ProductRepository class and $_productImageHelper is an object of Magento\\Catalog\\Helper\\Image class. In the Function resizeImage, there are four parameters $id which is the id of the <a href=\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":171,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[],"class_list":["post-111844","post","type-post","status-publish","format-standard","hentry","category-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Resize Product Image in Magento 2 - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Resize Product Image in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Today we are discussing how to resize the product image using a block class in Magento 2.First, we will create a block class as below: Here,&nbsp;$_productRepository is an object of MagentoCatalogModelProductRepository class and $_productImageHelper is an object of MagentoCatalogHelperImage class. In the Function resizeImage, there are four parameters $id which is the id of the [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-09T13:51:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-22T13:30:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Anuj Gupta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anuj Gupta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\"},\"author\":{\"name\":\"Anuj Gupta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4\"},\"headline\":\"Resize Product Image in Magento 2\",\"datePublished\":\"2018-02-09T13:51:29+00:00\",\"dateModified\":\"2024-02-22T13:30:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\"},\"wordCount\":189,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\",\"name\":\"Resize Product Image in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2018-02-09T13:51:29+00:00\",\"dateModified\":\"2024-02-22T13:30:11+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resize Product Image in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4\",\"name\":\"Anuj Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Anuj Gupta\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/anuj-gupta701\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Resize Product Image in Magento 2 - Webkul Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Resize Product Image in Magento 2 - Webkul Blog","og_description":"Today we are discussing how to resize the product image using a block class in Magento 2.First, we will create a block class as below: Here,&nbsp;$_productRepository is an object of MagentoCatalogModelProductRepository class and $_productImageHelper is an object of MagentoCatalogHelperImage class. In the Function resizeImage, there are four parameters $id which is the id of the [...]","og_url":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-02-09T13:51:29+00:00","article_modified_time":"2024-02-22T13:30:11+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Anuj Gupta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Anuj Gupta","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/"},"author":{"name":"Anuj Gupta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4"},"headline":"Resize Product Image in Magento 2","datePublished":"2018-02-09T13:51:29+00:00","dateModified":"2024-02-22T13:30:11+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/"},"wordCount":189,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/","url":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/","name":"Resize Product Image in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2018-02-09T13:51:29+00:00","dateModified":"2024-02-22T13:30:11+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/resize-product-image-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Resize Product Image in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4","name":"Anuj Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Anuj Gupta"},"url":"https:\/\/webkul.com\/blog\/author\/anuj-gupta701\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/111844","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/171"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=111844"}],"version-history":[{"count":22,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/111844\/revisions"}],"predecessor-version":[{"id":423887,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/111844\/revisions\/423887"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=111844"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=111844"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=111844"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}