Skip to content

Instantly share code, notes, and snippets.

@Juandresyn
Last active December 3, 2019 14:56
Show Gist options
  • Select an option

  • Save Juandresyn/2312392880eb71f1747f6404c6042ac5 to your computer and use it in GitHub Desktop.

Select an option

Save Juandresyn/2312392880eb71f1747f6404c6042ac5 to your computer and use it in GitHub Desktop.
Shopify JavaScript Image resize
const imageService = (img, w, h = w) => {
const imgSplit = img.split('.');
const imgFormat = imgSplit[imgSplit.length - 1];
const imgFirst = img.split(`.${imgFormat}`)[0];
return `${imgFirst}_${w}x${h}.${imgFormat}`;
};
// imageService('https://cdn.shopify.com/s/files/1/0175/8496/t/65/assets/Beckett-Simonon-Oxfords-Durant-Yates-Dean.jpg?1723', 360)
// returns -> "https://cdn.shopify.com/s/files/1/0175/8496/t/65/assets/Beckett-Simonon-Oxfords-Durant-Yates-Dean_360x360.jpg?1723"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment