Ensure unlimited flag is passed to tiffload #4446

This commit is contained in:
Lovell Fuller 2025-08-29 23:29:24 +01:00
parent 40be212bba
commit 0e4b648593
2 changed files with 4 additions and 0 deletions

View File

@ -12,3 +12,6 @@ slug: changelog/v0.34.4
* TypeScript: Ensure `KernelEnum` includes `linear`. * TypeScript: Ensure `KernelEnum` includes `linear`.
[#4441](https://github.com/lovell/sharp/pull/4441) [#4441](https://github.com/lovell/sharp/pull/4441)
[@BayanBennett](https://github.com/BayanBennett) [@BayanBennett](https://github.com/BayanBennett)
* Ensure `unlimited` flag is passed upstream when reading TIFF images.
[#4446](https://github.com/lovell/sharp/issues/4446)

View File

@ -396,6 +396,7 @@ namespace sharp {
imageType == ImageType::JPEG || imageType == ImageType::JPEG ||
imageType == ImageType::PNG || imageType == ImageType::PNG ||
imageType == ImageType::SVG || imageType == ImageType::SVG ||
imageType == ImageType::TIFF ||
imageType == ImageType::HEIF; imageType == ImageType::HEIF;
} }