Add support for BigTIFF output (#4459)

This commit is contained in:
throwbi
2025-09-30 10:41:02 +02:00
committed by GitHub
parent 54722dd582
commit 6b922b30d5
7 changed files with 26 additions and 0 deletions

2
lib/index.d.ts vendored
View File

@@ -1460,6 +1460,8 @@ declare namespace sharp {
quality?: number | undefined;
/** Compression options: none, jpeg, deflate, packbits, ccittfax4, lzw, webp, zstd, jp2k (optional, default 'jpeg') */
compression?: string | undefined;
/** Use BigTIFF variant (has no effect when compression is none) (optional, default false) */
bigtiff?: boolean | undefined;
/** Compression predictor options: none, horizontal, float (optional, default 'horizontal') */
predictor?: string | undefined;
/** Write an image pyramid (optional, default false) */