What's Changed
Color Palettes & Themes
Intervention Image now supports the extraction of color palettes from image objects. You can choose between the two main methods for collecting popular and dominant colors. Furthermore, it is possible to extract color themes from extensible definitions. Thanks to @deluxetom for co-authoring this.
// palette extraction
$popular = $image->colors()->popular(limit: 512);
$dominant = $image->colors()->dominant(limit: 5);
$theme = $image->colors()->theme(Intervention\Image\Colors\Theme::VIBRANT_MUTED);Read more about palettes and color themes.
Other
- Fix transparency bug in GD driver TrimModifier by @olivervogel in #1512
- Implement JsonSerializable for related classes by @olivervogel in #1513
Full Changelog: 4.2.1...4.3.0