Docs: changelog and credit for #4036

This commit is contained in:
Lovell Fuller 2024-03-21 18:34:35 +00:00
parent aa1bbcb5c1
commit eaf31a59e5
4 changed files with 11 additions and 1 deletions

View File

@ -617,6 +617,7 @@ sharp('input.svg')
Use these AVIF options for output image. Use these AVIF options for output image.
AVIF image sequences are not supported. AVIF image sequences are not supported.
Prebuilt binaries support a bitdepth of 8 only.
**Throws**: **Throws**:
@ -632,6 +633,7 @@ AVIF image sequences are not supported.
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression | | [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) | | [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) |
| [options.chromaSubsampling] | <code>string</code> | <code>&quot;&#x27;4:4:4&#x27;&quot;</code> | set to '4:2:0' to use chroma subsampling | | [options.chromaSubsampling] | <code>string</code> | <code>&quot;&#x27;4:4:4&#x27;&quot;</code> | set to '4:2:0' to use chroma subsampling |
| [options.bitdepth] | <code>number</code> | <code>8</code> | set bitdepth to 8, 10 or 12 bit |
**Example** **Example**
```js ```js
@ -670,6 +672,7 @@ globally-installed libvips compiled with support for libheif, libde265 and x265.
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression | | [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) | | [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) |
| [options.chromaSubsampling] | <code>string</code> | <code>&quot;&#x27;4:4:4&#x27;&quot;</code> | set to '4:2:0' to use chroma subsampling | | [options.chromaSubsampling] | <code>string</code> | <code>&quot;&#x27;4:4:4&#x27;&quot;</code> | set to '4:2:0' to use chroma subsampling |
| [options.bitdepth] | <code>number</code> | <code>8</code> | set bitdepth to 8, 10 or 12 bit |
**Example** **Example**
```js ```js

View File

@ -19,6 +19,10 @@ Requires libvips v8.15.2
* Ensure `clone` takes a deep copy of existing options. * Ensure `clone` takes a deep copy of existing options.
[#4029](https://github.com/lovell/sharp/issues/4029) [#4029](https://github.com/lovell/sharp/issues/4029)
* Add `bitdepth` option to `heif` output (prebuilt binaries support 8-bit only).
[#4036](https://github.com/lovell/sharp/pull/4036)
[@mertalev](https://github.com/mertalev)
### v0.33.2 - 12th January 2024 ### v0.33.2 - 12th January 2024
* Upgrade to libvips v8.15.1 for upstream bug fixes. * Upgrade to libvips v8.15.1 for upstream bug fixes.

View File

@ -287,3 +287,6 @@ GitHub: https://github.com/icetee
Name: Aaron Che Name: Aaron Che
GitHub: https://github.com/yolopunk GitHub: https://github.com/yolopunk
Name: Mert Alev
GitHub: https://github.com/mertalev

File diff suppressed because one or more lines are too long