You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
options.limitInputPixels (number | boolean ) Do not process input images where the number of pixels (width x height) exceeds this limit. Assumes image dimensions contained in the input metadata can be trusted. An integral Number of pixels, zero or false to remove limit, true to use default limit of 268402689 (0x3FFF x 0x3FFF). (optional, default 268402689)
The text was updated successfully, but these errors were encountered:
For particularly large source images, Sharp throws an error.
Can be fixed by passing along an options object with
options.limitInputPixels = false
From https://sharp.pixelplumbing.com/api-constructor
The text was updated successfully, but these errors were encountered: