Skip to content

4.3.0

Choose a tag to compare

@olivervogel olivervogel released this 22 Aug 07:43
· 7 commits to develop since this release
5598b9e

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

Full Changelog: 4.2.1...4.3.0