NEWS and UPGRADING for the scatter filter

This commit is contained in:
Kalle Sommer Nielsen 2019-05-10 02:37:02 +03:00
parent bcd11a1dfb
commit f13fdeadd6
2 changed files with 12 additions and 0 deletions

1
NEWS
View File

@ -44,6 +44,7 @@ PHP NEWS
. Implemented FR #72510 (systemd service should be hardened). (Craig Andrews)
- GD:
. Implemented the scatter filter (IMG_FILTER_SCATTER). (Kalle)
. Fixed bug #73291 (imagecropauto() $threshold differs from external libgd).
(cmb)
. Fixed bug #76324 (cannot detect recent versions of freetype with

View File

@ -180,6 +180,17 @@ PHP 7.4 UPGRADE NOTES
native variables and create/access data structures defined in C libraries.
RFC: https://wiki.php.net/rfc/ffi
- GD:
. Added the "scatter" image filter (IMG_FILTER_SCATTER) to apply a scatter
filter to images. This filter has the following prototype:
imagefilter($im, IMG_FILTER_SCATTER, int $sub, int $plus, array $colors = []);
The $colors array can be populated with a set of indexed colors where to
apply the scatter pixel shifting on.
Note, the result of this filter is always random.
- Hash:
. Added "crc32c" hash using Castagnoli's polynomial. This crc32 variant is
used by storage systems, such as iSCSI, SCTP, Btrfs and ext4.