diff --git a/docs/api-output.md b/docs/api-output.md index 42e92b38..1d1aa445 100644 --- a/docs/api-output.md +++ b/docs/api-output.md @@ -206,6 +206,10 @@ Use these TIFF options for output image. - `options.force` **[Boolean][6]** force TIFF output, otherwise attempt to use input format (optional, default `true`) - `options.compression` **[Boolean][6]** compression options: lzw, deflate, jpeg, ccittfax4 (optional, default `'jpeg'`) - `options.predictor` **[Boolean][6]** compression predictor options: none, horizontal, float (optional, default `'horizontal'`) + - `options.pyramid` **[Boolean][6]** write an image pyramid (optional, default `false`) + - `options.tile` **[Boolean][6]** write a tiled tiff (optional, default `false`) + - `options.tileWidth` **[Boolean][6]** horizontal tile size (optional, default `256`) + - `options.tileHeight` **[Boolean][6]** vertical tile size (optional, default `256`) - `options.xres` **[Number][8]** horizontal resolution in pixels/mm (optional, default `1.0`) - `options.yres` **[Number][8]** vertical resolution in pixels/mm (optional, default `1.0`) - `options.squash` **[Boolean][6]** squash 8-bit images down to 1 bit (optional, default `false`) diff --git a/docs/changelog.md b/docs/changelog.md index ecbaf25a..05b2ae13 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -29,6 +29,10 @@ Requires libvips v8.7.0. [#1477](https://github.com/lovell/sharp/pull/1477) [@fromkeith](https://github.com/fromkeith) +* Expose libvips' pyramid/tile options for TIFF output. + [#1483](https://github.com/lovell/sharp/pull/1483) + [@mbklein](https://github.com/mbklein) + #### v0.21.0 - 4th October 2018 * Deprecate the following resize-related functions: diff --git a/docs/index.md b/docs/index.md index d35fb450..b2533193 100644 --- a/docs/index.md +++ b/docs/index.md @@ -121,6 +121,7 @@ the help and code contributions of the following people: * [Freezy](https://github.com/freezy) * [Julian Aubourg](https://github.com/jaubourg) * [Keith Belovay](https://github.com/fromkeith) +* [Michael B. Klein](https://github.com/mbklein) Thank you!