Skip to content

Commit e6938da

Browse files
committed
fix: handle image rotation
1 parent 27dd4fb commit e6938da

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
@@ -94,6 +94,7 @@ const handler = async (event) => {
9494
// The format methods are just to set options: they don't
9595
// make it return that format.
9696
const { info, data: imageBuffer } = await sharp(bufferData)
97+
.rotate()
9798
.jpeg({ quality, mozjpeg: true, force: ext === 'jpg' })
9899
.png({ quality, palette: true, force: ext === 'png' })
99100
.webp({ quality, force: ext === 'webp' })

0 commit comments

Comments
 (0)