Skip to content

Commit cfaa517

Browse files
authored
Merge pull request #344 from netlify/mk/image-rotate
fix: handle image rotation
2 parents ec75447 + e6938da commit cfaa517

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib/templates/imageFunction.js

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ const handler = async (event) => {
9797
// The format methods are just to set options: they don't
9898
// make it return that format.
9999
const { info, data: imageBuffer } = await sharp(bufferData)
100+
.rotate()
100101
.jpeg({ quality, mozjpeg: true, force: ext === 'jpg' })
101102
.png({ quality, palette: true, force: ext === 'png' })
102103
.webp({ quality, force: ext === 'webp' })

0 commit comments

Comments
 (0)