Changelog entry and doc refresh for #1204

This commit is contained in:
Lovell Fuller 2018-04-25 10:19:33 +01:00
parent b154cd0418
commit 165e337e44
4 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,7 @@
to decode images, even if the data is corrupt or invalid. Set this flag to true to decode images, even if the data is corrupt or invalid. Set this flag to true
if you'd rather halt processing and raise an error when loading invalid images. (optional, default `false`) if you'd rather halt processing and raise an error when loading invalid images. (optional, default `false`)
- `options.density` **[Number][9]** integral number representing the DPI for vector images. (optional, default `72`) - `options.density` **[Number][9]** integral number representing the DPI for vector images. (optional, default `72`)
- `options.page` **[Number][9]** page number to extract for multi-page input (GIF, TIFF) (optional, default `0`)
- `options.raw` **[Object][7]?** describes raw pixel input image data. See `raw()` for pixel ordering. - `options.raw` **[Object][7]?** describes raw pixel input image data. See `raw()` for pixel ordering.
- `options.raw.width` **[Number][9]?** - `options.raw.width` **[Number][9]?**
- `options.raw.height` **[Number][9]?** - `options.raw.height` **[Number][9]?**

View File

@ -14,6 +14,10 @@ Requires libvips v8.6.1.
[#1165](https://github.com/lovell/sharp/pull/1165) [#1165](https://github.com/lovell/sharp/pull/1165)
[@oncletom](https://github.com/oncletom) [@oncletom](https://github.com/oncletom)
* Add support for page selection with multi-page input (GIF/TIFF).
[#1204](https://github.com/lovell/sharp/pull/1204)
[@woolite64](https://github.com/woolite64)
#### v0.20.1 - 17<sup>th</sup> March 2018 #### v0.20.1 - 17<sup>th</sup> March 2018
* Improve installation experience when a globally-installed libvips below the minimum required version is found. * Improve installation experience when a globally-installed libvips below the minimum required version is found.

View File

@ -111,6 +111,7 @@ the help and code contributions of the following people:
* [Andrea Bianco](https://github.com/BiancoA) * [Andrea Bianco](https://github.com/BiancoA)
* [Rik Heywood](https://github.com/rikh42) * [Rik Heywood](https://github.com/rikh42)
* [Thomas Parisot](https://github.com/oncletom) * [Thomas Parisot](https://github.com/oncletom)
* [Nathan Graves](https://github.com/woolite64)
Thank you! Thank you!

View File

@ -97,6 +97,7 @@ const debuglog = util.debuglog('sharp');
* to decode images, even if the data is corrupt or invalid. Set this flag to true * to decode images, even if the data is corrupt or invalid. Set this flag to true
* if you'd rather halt processing and raise an error when loading invalid images. * if you'd rather halt processing and raise an error when loading invalid images.
* @param {Number} [options.density=72] - integral number representing the DPI for vector images. * @param {Number} [options.density=72] - integral number representing the DPI for vector images.
* @param {Number} [options.page=0] - page number to extract for multi-page input (GIF, TIFF)
* @param {Object} [options.raw] - describes raw pixel input image data. See `raw()` for pixel ordering. * @param {Object} [options.raw] - describes raw pixel input image data. See `raw()` for pixel ordering.
* @param {Number} [options.raw.width] * @param {Number} [options.raw.width]
* @param {Number} [options.raw.height] * @param {Number} [options.raw.height]