Replace Sharp with Jimp for pure JS image manipulation library #2533
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Testing
From testing a jpeg is around twice as large as a webp image and takes 3 times as long to generate (1.7s vs 5.9s). PNG images were 5 times as large.
Creating sample image that is of type jpeg
There is a Jimp plugin for webp https://github.com/jimp-dev/jimp/tree/main/plugins/wasm-webp but I couldn't get it to work with error
Error: No "exports" main defined in /home/node/app/node_modules/@jimp/wasm-webp/package.json
, which I assume relates to the note about "only works in esm environments". As well looking through the webp plugin dependencies it eventually uses https://github.com/webmproject/libwebp which has to be built, so might have the same type of build issue as Sharp.