5.13.1 • Published 3 months ago

gatsby-transformer-sharp v5.13.1

Weekly downloads
267,452
License
MIT
Repository
github
Last release
3 months ago

gatsby-transformer-sharp

Creates ImageSharp nodes from image types that are supported by the Sharp image processing library and provides fields in their GraphQL types for processing your images in a variety of ways including resizing, cropping, and creating responsive images.

Live demo (source)

Install

npm install gatsby-transformer-sharp gatsby-plugin-sharp

How to use

// In your gatsby-config.js
module.exports = {
  plugins: [`gatsby-plugin-sharp`, `gatsby-transformer-sharp`],
}

Please note that you must have a source plugin (which brings in images) installed in your project. Otherwise, no ImageSharp nodes can be created for your files. Examples would be gatsby-source-filesystem or source plugins for (headless) CMSs like gatsby-source-wordpress.

Note: An exception to this is when using gatsby-source-contentful, as the source plugin and the assets are not downloaded to the local filesystem. By default, the gatsby-source-contentful plugin creates a ContentfulAsset node for every image with links to Contentful’s CDN, therefore it is not necessary to use gatsby-transformer-sharp together with gatsby-source-contentful.

Parsing algorithm

It recognizes files with the following extensions as images.

  • jpeg
  • jpg
  • png
  • webp
  • tif
  • tiff

Each image file is parsed into a node of type ImageSharp.

Configuration options

checkSupportedExtensions boolean

Sharp only supports certain image formats (see the Parsing algorithm section above) and hence throws a warning when you e.g. use a .gif in an ImageSharp query. You'll need to use publicURL instead. With this option you can disable the warning behavior.

// In your gatsby-config.js
module.exports = {
  plugins: [
    `gatsby-plugin-sharp`,
    {
      resolve: `gatsby-transformer-sharp`,
      options: {
        // The option defaults to true
        checkSupportedExtensions: false,
      },
    },
  ],
}

Troubleshooting

Incompatible library version: sharp.node requires version X or later, but Z provides version Y

This means that there are multiple incompatible versions of the sharp package installed in node_modules. The complete error typically looks like this:

Something went wrong installing the "sharp" module

dlopen(/Users/misiek/dev/gatsby-starter-blog/node_modules/sharp/build/Release/sharp.node, 1): Library not loaded: @rpath/libglib-2.0.dylib
  Referenced from: /Users/misiek/dev/gatsby-starter-blog/node_modules/sharp/build/Release/sharp.node
  Reason: Incompatible library version: sharp.node requires version 6001.0.0 or later, but libglib-2.0.dylib provides version 5801.0.0

To fix this, you'll need to update all Gatsby plugins in the current project that depend on the sharp package. Here's a list of official plugins that you might need to update in case your projects uses them:

  • gatsby-plugin-sharp
  • gatsby-plugin-manifest
  • gatsby-remark-images-contentful
  • gatsby-source-contentful
  • gatsby-transformer-sharp
  • gatsby-transformer-sqip

To update these packages, run:

npm install gatsby-plugin-sharp gatsby-plugin-manifest gatsby-remark-images-contentful gatsby-source-contentful gatsby-transformer-sharp gatsby-transformer-sqip

If updating these doesn't fix the issue, your project probably uses other plugins from the community that depend on a different version of sharp. Try running npm list sharp or yarn why sharp to see all packages in the current project that use sharp and try updating them as well.

@devdocs/gatsby-theme-acd@commercetools-docs/gatsby-theme-docs@pil0t/gatsby-theme-novela@storycopter/gatsby-starter-storycopter@thirdwave-network/thirdwave-gatsby-theme@lucasbarcelos/gatsby-theme-mercadolibre-store-custom@stton/gatsby-theme-shopifyshycat-theme-shopify@cangir/gatsby-blog-core@sachinjadhav/gatsby-theme-bloggatsby-plugin-rave@smartassdesign/gatsby-theme-themifygatsby-theme-sky-lite-master@puzzledbytheweb/gatsby-theme-ecommerce-core@studiobear/gatsby-theme-ionic@studiobear/gatsby-theme-blog@kyrelldixon/gatsby-theme-novela@one-builder/gatsby-theme-ob-master@studiobear/gatsby-theme-blog-ionicgatsby-theme-ob-masterjamstack-boilerplate@hacktion/test-library@shycat/shycat-theme-shopifygatsby-theme-sanity-evelanportfolio-gatsbygatsby-theme-ghost-reloadedgatsby-theme-crystyallizegatsby-startyer-crystyallize@cangir/gatsby-theme-phoenix@cangir/gatsby-theme-photo-core@cangir/gatsby-theme-portfolio-coregatsby-universal@nowseemee/monument@jayellul/gatsby-theme-craftcms@i1r0/gatsby-theme-nehalemgatsby-theme-contactless-menugatsby-theme-minimal-blog-core@rubrik/docs@molecule-ui/system@component-driven/gatsby-theme-content-collectionsgatsby-theme-kuworking-landing-onewebiu-testjeffs-websitegatsby-theme-bejamas-coregatsby-theme-fierce-vanillagatsby-theme-lumengatsby-theme-css-modules-demogatsby-theme-memoriestorichegatsby-theme-katahdingatsby-theme-factlycustom-gatsby-theme-novelatheme-gatsby-shopifyjam-cms-startergatsby-theme-jdoesix-foot-six-designsgatsby-theme-cumberland@juancamiloqhz/gatsby-theme-affiliate-links@ekampf/gatsby-theme-networked-thought@fujuntao/use-form-websitegatsby-typescript-default-startergatsby-typescript-material-ui-startergatsby-typescript-tailwind-starter@dxos/theme-docs@garytee/gatsby-woo-elementorgatsby-woocommerce-elementor-theme@leptest/gatsby-netlify-cmstest-theme-shawacademygatsby-theme-wom-browsegatsby-theme-wom-cartgatsby-theme-wom-checkoutgatsby-theme-wom-login@fengshangwuqi/gatsby-config@mlapida/gatsby-theme-minimal-blog-core@priyank-vaghela/gatsby-custom-theme-instagram@sandalboyz/gatsby-theme-sandalboyzgatsby-theme-sandalboyz@kennethwangdotdev/gatsby-theme-dotdev@pehaa/gatsby-theme-wp-core@pehaa/gatsby-theme-wp-parent@supervenz/service-industry-lead-collectorgatsby-theme-providencegatsby-theme-eveemagatsby-theme-eveema-dcgatsby-theme-eveema-testspagatsby-theme-portfolio-are.nagatsby-theme-clean-docsgatsby-theme-c32@yiqilaitech/gatsby-theme-corewhitebrickgatsby-theme-defaultsgatsby-theme-whitebrickgatsby-theme-serena-v2@hesburgh-wse/gatsby-theme-marblebrawl-capped-webpage@rodriguesmyron/gatsby-theme-podcastgumroad-api-tester-webappgatsby-theme-rayriffy-blog@kimchico/gatsby-themegatsby-theme-testgatsby-theme-transistorfm
5.14.0-next.2

3 months ago

5.13.1

3 months ago

5.14.0-next.1

4 months ago

5.13.0

4 months ago

5.14.0-next.0

4 months ago

5.13.0-next.1

5 months ago

5.12.3

6 months ago

5.12.2

6 months ago

5.12.1

6 months ago

5.12.0

8 months ago

5.13.0-next.0

9 months ago

5.10.0

11 months ago

5.11.0-next.0

11 months ago

5.11.0-next.1

11 months ago

5.11.0

10 months ago

5.12.0-next.0

10 months ago

5.12.0-next.1

10 months ago

5.10.0-next.2

12 months ago

5.10.0-next.1

12 months ago

5.10.0-next.0

1 year ago

5.9.0

1 year ago

5.8.0-next.0

1 year ago

5.8.0

1 year ago

5.9.0-next.1

1 year ago

5.9.0-next.0

1 year ago

5.7.0

1 year ago

5.6.0-next.0

1 year ago

5.6.0-next.1

1 year ago

5.7.0-next.0

1 year ago

5.5.0-next.1

1 year ago

5.4.0

1 year ago

5.5.0

1 year ago

5.6.0

1 year ago

4.25.0

1 year ago

5.1.0-next.0

1 year ago

5.0.0

1 year ago

5.1.0

1 year ago

5.2.0

1 year ago

5.2.0-next.0

1 year ago

3.15.0

1 year ago

5.5.0-next.0

1 year ago

5.3.0-next.1

1 year ago

5.3.0-next.0

1 year ago

5.3.0-next.3

1 year ago

5.3.0-next.2

1 year ago

5.3.1

1 year ago

5.3.0

1 year ago

5.0.0-next.1

2 years ago

5.0.0-next.2

1 year ago

5.0.0-next.0

2 years ago

5.0.0-next.5

1 year ago

5.0.0-next.3

1 year ago

5.0.0-next.4

1 year ago

5.4.0-next.0

1 year ago

5.4.0-next.1

1 year ago

5.4.0-next.2

1 year ago

4.24.0

2 years ago

4.24.0-next.2

2 years ago

4.24.0-next.1

2 years ago

4.24.0-next.0

2 years ago

4.23.0-next.0

2 years ago

4.23.0

2 years ago

4.23.1

2 years ago

4.22.0

2 years ago

4.25.0-next.0

2 years ago

4.21.0-next.0

2 years ago

4.21.0-next.2

2 years ago

4.21.0-next.1

2 years ago

4.19.0-next.2

2 years ago

4.16.0

2 years ago

4.16.0-next.0

2 years ago

4.16.0-next.1

2 years ago

4.19.0-next.1

2 years ago

4.19.0-next.0

2 years ago

4.15.0

2 years ago

4.15.1

2 years ago

4.21.0

2 years ago

4.20.0

2 years ago

4.18.0-next.1

2 years ago

4.18.0-next.0

2 years ago

4.22.0-next.0

2 years ago

4.22.0-next.1

2 years ago

4.18.1

2 years ago

4.18.0

2 years ago

4.17.0-next.0

2 years ago

4.17.0-next.1

2 years ago

4.17.0

2 years ago

4.20.0-next.1

2 years ago

4.20.0-next.0

2 years ago

4.20.0-next.2

2 years ago

4.19.0

2 years ago

4.14.0

2 years ago

4.13.0

2 years ago

4.14.0-next.1

2 years ago

4.14.0-next.2

2 years ago

4.14.0-next.0

2 years ago

4.15.0-next.0

2 years ago

4.11.0-next.0

2 years ago

4.11.0-next.1

2 years ago

4.10.0-next.2

2 years ago

4.10.0

2 years ago

4.12.0

2 years ago

4.12.1

2 years ago

4.11.0

2 years ago

4.12.0-next.1

2 years ago

4.12.0-next.0

2 years ago

4.13.0-next.0

2 years ago

4.10.0-next.0

2 years ago

4.10.0-next.1

2 years ago

4.9.0

2 years ago

4.7.0-next.0

2 years ago

4.5.0-next.0

2 years ago

4.5.0-next.1

2 years ago

4.4.0

2 years ago

4.8.0-next.0

2 years ago

4.8.0-next.1

2 years ago

4.3.0

2 years ago

4.9.0-next.0

2 years ago

4.4.0-next.1

2 years ago

4.4.0-next.0

2 years ago

4.6.0-next.0

2 years ago

4.8.0

2 years ago

4.7.0

2 years ago

4.6.0

2 years ago

4.5.0

2 years ago

4.2.0-next.1

2 years ago

4.2.0

2 years ago

4.3.0-next.0

2 years ago

4.2.0-next.0

2 years ago

4.1.0

2 years ago

4.0.0

2 years ago

4.1.0-next.0

2 years ago

4.0.0-zz-next.3

3 years ago

4.0.0-zz-next.2

3 years ago

3.14.0

3 years ago

4.0.0-zz-next.1

3 years ago

4.0.0-zz-next.8

3 years ago

4.0.0-next.1

3 years ago

4.0.0-next.0

3 years ago

3.14.0-next.2

3 years ago

3.14.0-next.1

3 years ago

3.13.0

3 years ago

3.14.0-next.0

3 years ago

3.13.0-next.1

3 years ago

3.12.0

3 years ago

3.13.0-next.0

3 years ago

3.12.0-next.3

3 years ago

3.12.0-next.2

3 years ago

3.12.0-next.1

3 years ago

3.11.0

3 years ago

3.12.0-next.0

3 years ago

3.10.0

3 years ago

3.11.0-next.0

3 years ago

3.10.0-next.1

3 years ago

3.9.0

3 years ago

3.10.0-next.0

3 years ago

3.8.0

3 years ago

3.9.0-next.0

3 years ago

3.8.0-next.0

3 years ago

3.8.0-next.1

3 years ago

3.7.1

3 years ago

3.7.0

3 years ago

3.7.0-next.2

3 years ago

3.7.0-next.1

3 years ago

3.6.0

3 years ago

3.5.0-next.0

3 years ago

3.7.0-next.0

3 years ago

3.6.0-next.0

3 years ago

3.5.0

3 years ago

3.4.0

3 years ago

3.3.0

3 years ago

3.4.0-next.0

3 years ago

3.3.0-next.1

3 years ago

3.2.0

3 years ago

3.3.0-next.0

3 years ago

3.1.0

3 years ago

3.2.0-next.0

3 years ago

3.1.0-next.2

3 years ago

2.12.1

3 years ago

3.0.0

3 years ago

3.0.0-v3rc.2

3 years ago

3.0.0-v3rc.1

3 years ago

3.1.0-next.1

3 years ago

3.0.0-v3rc.0

3 years ago

3.1.0-next.0

3 years ago

3.0.0-next.2

3 years ago

3.0.0-next.1

3 years ago

3.0.0-next.0

3 years ago

2.12.0

3 years ago

2.13.0-next.0

3 years ago

2.12.0-next.1

3 years ago

2.11.0

3 years ago

2.12.0-next.0

3 years ago

2.10.1

3 years ago

2.11.0-next.1

3 years ago

2.10.0

3 years ago

2.11.0-next.0

3 years ago

2.10.0-next.3

3 years ago

2.10.0-avif.18

3 years ago

2.10.0-avif.21

3 years ago

2.10.0-next.2

3 years ago

2.10.0-next.1

3 years ago

2.9.0

3 years ago

2.10.0-next.0

3 years ago

2.8.0

3 years ago

2.9.0-next.0

3 years ago

2.7.0

3 years ago

2.8.0-next.1

3 years ago

2.8.0-next.0

3 years ago

2.7.0-next.1

3 years ago

2.6.0

3 years ago

2.6.0-next.1

3 years ago

2.7.0-next.0

3 years ago

2.6.0-next.0

3 years ago

2.5.21

3 years ago

2.5.20

3 years ago

2.5.19

3 years ago

2.5.18

4 years ago

2.5.17

4 years ago

2.5.16

4 years ago

2.5.15

4 years ago

2.5.14

4 years ago

2.5.13

4 years ago

2.5.12

4 years ago

2.5.11

4 years ago

2.5.10

4 years ago

2.5.9

4 years ago

2.5.7

4 years ago

2.5.6

4 years ago

2.5.5

4 years ago

2.5.4

4 years ago

2.5.3

4 years ago

2.5.2

4 years ago

2.5.1

4 years ago

2.5.0

4 years ago

2.4.7

4 years ago

2.4.6

4 years ago

2.4.5

4 years ago

2.4.4

4 years ago

2.4.3

4 years ago

2.4.2

4 years ago

2.4.1

4 years ago

2.4.0

4 years ago

2.3.19

4 years ago

2.3.18

4 years ago

2.3.17

4 years ago

2.3.16

4 years ago

2.3.15

4 years ago

2.3.14

4 years ago

2.3.13

4 years ago

2.3.12

4 years ago

2.3.11

4 years ago

2.3.9

4 years ago

2.3.7

4 years ago

2.3.6

4 years ago

2.3.5

4 years ago

2.3.4

4 years ago

2.3.3

4 years ago

2.3.2

4 years ago

2.3.1

4 years ago

2.3.0

4 years ago

2.2.23

5 years ago

2.2.22

5 years ago

2.2.21

5 years ago

2.2.20

5 years ago

2.2.19

5 years ago

2.2.17

5 years ago

2.2.16

5 years ago

2.2.15

5 years ago

2.2.14

5 years ago

2.2.13

5 years ago

2.2.12

5 years ago

2.2.11

5 years ago

2.2.10

5 years ago

2.2.9

5 years ago

2.2.8

5 years ago

2.2.7

5 years ago

2.2.6

5 years ago

2.2.5

5 years ago

2.2.4

5 years ago

2.2.3

5 years ago

2.2.2

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

2.1.21

5 years ago

2.1.20

5 years ago

2.1.19

5 years ago

2.1.18

5 years ago

2.1.17

5 years ago

2.1.16

5 years ago

2.1.16-alpha.0

5 years ago

2.1.15

5 years ago

2.1.14

5 years ago

2.1.13

5 years ago

2.1.12

5 years ago

2.1.10

5 years ago

2.1.9

5 years ago

2.1.8

5 years ago

2.1.7

5 years ago

2.1.6

5 years ago

2.1.5

5 years ago

2.1.4

6 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.1-rc.3

6 years ago

2.1.1-rc.2

6 years ago

2.1.1-rc.1

6 years ago

2.1.1-rc.0

6 years ago

2.1.1-beta.7

6 years ago

2.1.1-beta.6

6 years ago

2.1.1-beta.5

6 years ago

2.1.1-beta.4

6 years ago

2.1.1-beta.3

6 years ago

2.1.1-beta.2

6 years ago

2.1.1-beta.1

6 years ago

2.1.1-beta.0

6 years ago

1.6.27

6 years ago

2.1.1-alpha.2

6 years ago

2.0.1-16

6 years ago

2.0.1-15

6 years ago

2.0.1-14

6 years ago

2.0.1-13

6 years ago

1.6.26

6 years ago

2.0.1-12

6 years ago

2.0.1-11

6 years ago

2.0.1-10

6 years ago

1.6.25

6 years ago

2.0.1-9

6 years ago

2.0.1-8

6 years ago

1.6.24

6 years ago

2.0.1-5

6 years ago

2.0.1-4

6 years ago

2.0.1-3

6 years ago

1.6.23

6 years ago

2.0.1-2

6 years ago

2.0.1-1

6 years ago

1.6.22

6 years ago

1.6.21

6 years ago

1.6.20

6 years ago

2.0.1-0

6 years ago

1.6.19

6 years ago

1.6.18

6 years ago

1.6.17

6 years ago

1.6.16

6 years ago

1.6.15

6 years ago

1.6.14

6 years ago

1.6.13

6 years ago

1.6.12

6 years ago

1.6.11

6 years ago

1.6.10

7 years ago

1.6.8

7 years ago

1.6.7

7 years ago

1.6.6

7 years ago

1.6.5

7 years ago

1.6.4

7 years ago

1.6.3

7 years ago

1.6.2

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.5.0

7 years ago

1.4.0

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

1.0.0-beta.7

7 years ago

1.0.0-beta.6

7 years ago

1.0.0-beta.1

7 years ago

1.0.0-alpha.23

7 years ago

1.0.0-alpha.22

7 years ago

1.0.0-alpha17

7 years ago

1.0.0-alpha16

7 years ago

1.0.0-alpha15

7 years ago

1.0.0-alpha14

7 years ago

1.0.0-alpha13

7 years ago