Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to keep metadata in files processed by gatsby-plugin-sharp #10210

Merged
merged 5 commits into from
Dec 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 36 additions & 2 deletions packages/gatsby-plugin-sharp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ images. By default it uses a quality setting of [50-75].

```javascript
// In your gatsby-config.js
plugins: [`gatsby-plugin-sharp`]
plugins: [
{
resolve: `gatsby-plugin-sharp`,
options: {
useMozJpeg: false,
stripMetadata: true,
},
},
]
```

## Methods
Expand Down Expand Up @@ -242,12 +250,37 @@ You can opt-in to use [MozJPEG][16] for jpeg-encoding. MozJPEG provides even
better image compression than the default encoder used in `gatsby-plugin-sharp`.
However, when using MozJPEG the build time of your Gatsby project will increase
significantly.
To enable MozJPEG set the [environment variable](/docs/environment-variables/#environment-variables):

To enable MozJPEG, you can set the `useMozJpeg` plugin option to `true` in
`gatsby-config.js`.

For backwards compatible reasons, if `useMozJpeg` is not defined in the plugin
options, the [environment variable](/docs/environment-variables/#environment-variables)
`GATSBY_JPEG_ENCODER` acts as a fallback if set to `MOZJPEG`:

```shell
GATSBY_JPEG_ENCODER=MOZJPEG
```

### EXIF and ICC metadata

By default, `gatsby-plugin-sharp` strips all EXIF, ICC and other metadata
present in your source file. This is the recommended default as it leads to
smaller file sizes.

However, in situations where you wish to preserve EXIF metadata or ICC profiles
(example: you are building a photography portfolio and wish to conserve
the color profile or the copyright information of the photos you've exported
from Adobe Lightroom or Phase One's Capture One), you can set the `stripMetadata`
plugin option to `false` in `gatsby-config.js`.

It is important to note that if `stripMetadata` is set to `false`, **all**
metadata information will be preserved from the source image, including but not
limited to the latitude/longitude information of where the picture was taken
(if present). If you wish to strip this information from the source file, you
can either leave `stripMetadata` to its default of `true`, or manually
pre-process your images with a tool such as [ExifTool][17].

[1]: https://alistapart.com/article/finessing-fecolormatrix
[2]: http://blog.72lions.com/blog/2015/7/7/duotone-in-js
[3]: https://ines.io/blog/dynamic-duotone-svg-jade
Expand All @@ -264,3 +297,4 @@ GATSBY_JPEG_ENCODER=MOZJPEG
[14]: https:/oliver-moran/jimp
[15]: http://sharp.dimens.io/en/stable/api-operation/#flatten
[16]: https:/mozilla/mozjpeg
[17]: https://www.sno.phy.queensu.ca/~phil/exiftool/
5 changes: 3 additions & 2 deletions packages/gatsby-plugin-sharp/src/gatsby-node.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
const { setBoundActionCreators } = require(`./index`)
const { setBoundActionCreators, setPluginOptions } = require(`./index`)

exports.onPreInit = ({ actions }) => {
exports.onPreInit = ({ actions }, pluginOptions) => {
setBoundActionCreators(actions)
setPluginOptions(pluginOptions)
}

// TODO
Expand Down
26 changes: 21 additions & 5 deletions packages/gatsby-plugin-sharp/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ exports.setBoundActionCreators = actions => {
boundActionCreators = actions
}

/// Plugin options are loaded onPreInit in gatsby-node
const pluginDefaults = {
useMozJpeg: process.env.GATSBY_JPEG_ENCODER === `MOZJPEG`,
stripMetadata: true,
}
let pluginOptions = Object.assign({}, pluginDefaults)
exports.setPluginOptions = opts => {
pluginOptions = Object.assign({}, pluginOptions, opts)
}

// Promisify the sharp prototype (methods) to promisify the alternative (for
// raw) callback-accepting toBuffer(...) method
Promise.promisifyAll(sharp.prototype, { multiArgs: true })
Expand Down Expand Up @@ -110,8 +120,6 @@ const healOptions = (args, defaultArgs) => {
return options
}

const useMozjpeg = process.env.GATSBY_JPEG_ENCODER === `MOZJPEG`

let totalJobs = 0
const processFile = (file, jobs, cb, reporter) => {
// console.log("totalJobs", totalJobs)
Expand All @@ -124,7 +132,14 @@ const processFile = (file, jobs, cb, reporter) => {

let pipeline
try {
pipeline = sharp(file).rotate()
pipeline = sharp(file)

// Keep Metadata
if (!pluginOptions.stripMetadata) {
pipeline = pipeline.withMetadata()
}

pipeline = pipeline.rotate()
} catch (err) {
reportError(`Failed to process image ${file}`, err, reporter)
jobs.forEach(job => job.outsideReject(err))
Expand Down Expand Up @@ -170,7 +185,7 @@ const processFile = (file, jobs, cb, reporter) => {
})

// jpeg
if (!useMozjpeg) {
if (!pluginOptions.useMozJpeg) {
clonedPipeline = clonedPipeline.jpeg({
quality: args.quality,
progressive: args.jpegProgressive,
Expand Down Expand Up @@ -231,6 +246,7 @@ const processFile = (file, jobs, cb, reporter) => {
args.quality + 25,
100
)}`, // e.g. 40-65
strip: !!pluginOptions.stripMetadata, // Must be a bool
}),
],
})
Expand All @@ -242,7 +258,7 @@ const processFile = (file, jobs, cb, reporter) => {
.catch(onFinish)
// Compress jpeg
} else if (
useMozjpeg &&
pluginOptions.useMozJpeg &&
((job.file.extension === `jpg` && args.toFormat === ``) ||
(job.file.extension === `jpeg` && args.toFormat === ``) ||
args.toFormat === `jpg`)
Expand Down