We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40be212 commit 0e4b648Copy full SHA for 0e4b648
docs/src/content/docs/changelog/v0.34.4.md
@@ -12,3 +12,6 @@ slug: changelog/v0.34.4
12
* TypeScript: Ensure `KernelEnum` includes `linear`.
13
[#4441](https://github.com/lovell/sharp/pull/4441)
14
[@BayanBennett](https://github.com/BayanBennett)
15
+
16
+* Ensure `unlimited` flag is passed upstream when reading TIFF images.
17
+ [#4446](https://github.com/lovell/sharp/issues/4446)
src/common.cc
@@ -396,6 +396,7 @@ namespace sharp {
396
imageType == ImageType::JPEG ||
397
imageType == ImageType::PNG ||
398
imageType == ImageType::SVG ||
399
+ imageType == ImageType::TIFF ||
400
imageType == ImageType::HEIF;
401
}
402
0 commit comments