Docs: changelog and credit for #4168

This commit is contained in:
Lovell Fuller 2024-07-20 14:04:53 +01:00
parent 67a4592756
commit 2672de2480
3 changed files with 12 additions and 0 deletions

View File

@ -24,6 +24,10 @@ Requires libvips v8.15.2
[#4157](https://github.com/lovell/sharp/pull/4157)
[@nkeynes](https://github.com/nkeynes)
* Expose optional `precision` parameter of `blur` operation.
[#4168](https://github.com/lovell/sharp/pull/4168)
[@marcosc90](https://github.com/marcosc90)
### v0.33.4 - 16th May 2024
* Remove experimental status from `pipelineColourspace`.

View File

@ -302,3 +302,6 @@ GitHub: https://github.com/ton11797
Name: Nathan Keynes
GitHub: https://github.com/nkeynes
Name: Marcos Casagrande
GitHub: https://github.com/marcosc90

View File

@ -59,6 +59,11 @@ sharp('input.jpg')
sharp('input.jpg').resize({ width: 300 }).blur(false).blur(true).toFile('output.jpg');
sharp().blur();
sharp().blur(1);
sharp().blur({ sigma: 1 });
sharp().blur({ sigma: 1, precision: 'approximate' });
sharp({
create: {
width: 300,