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

View File

@@ -175,6 +175,7 @@ struct PipelineBaton {
bool gifProgressive;
int tiffQuality;
VipsForeignTiffCompression tiffCompression;
bool tiffBigtiff;
VipsForeignTiffPredictor tiffPredictor;
bool tiffPyramid;
int tiffBitdepth;
@@ -350,6 +351,7 @@ struct PipelineBaton {
gifProgressive(false),
tiffQuality(80),
tiffCompression(VIPS_FOREIGN_TIFF_COMPRESSION_JPEG),
tiffBigtiff(false),
tiffPredictor(VIPS_FOREIGN_TIFF_PREDICTOR_HORIZONTAL),
tiffPyramid(false),
tiffBitdepth(8),