mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 02:30:12 +02:00
Docs: changelog and credit for #4168
This commit is contained in:
parent
67a4592756
commit
2672de2480
@ -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`.
|
||||
|
@ -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
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user