PHPackages                             wallacemaxters/filament-image-color-picker - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. wallacemaxters/filament-image-color-picker

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

wallacemaxters/filament-image-color-picker
==========================================

A custom Form Component to pick color from image

0.0.7(1y ago)15872MITJavaScriptPHP ^8.1

Since Oct 17Pushed 1y ago1 watchersCompare

[ Source](https://github.com/wallacemaxters/filament-image-color-picker)[ Packagist](https://packagist.org/packages/wallacemaxters/filament-image-color-picker)[ RSS](/packages/wallacemaxters-filament-image-color-picker/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)Dependencies (2)Versions (10)Used By (0)

Filament Image Color Picker 🎨
-----------------------------

[](#filament-image-color-picker-)

**Filament Image Color Picker** is a Filament plugin that provides a custom **color picker input** based on an image. This tool allows users to select colors directly from an image, making it perfect for applications that require precise color selection.

### Features

[](#features)

✅ Select colors from any uploaded image
✅ Seamless integration with Filament forms
✅ User-friendly and highly customizable
✅ Supports multiple image formats

### Installation

[](#installation)

Filament 3

```
composer require wallacemaxters/filament-image-color-picker ^0.6
```

Filament 4

```
composer require wallacemaxters/filament-image-color-picker ^0.1
```

Usage
-----

[](#usage)

To use the **Filament Image Color Picker**, simply include it in your Filament form field configuration:

```
use WallaceMaxters\FilamentImageColorPicker\ImageColorPicker;

//

return $form->schema([
    TextInput::make('image_url')->url()->live(),
    ImageColorPicker::make('color')
        ->columnSpanFull()
        ->image(fn ($get) => $get('image_url')),
]);
```

Use ImageColorPicker as Action:

```
 Forms\Components\ColorPicker::make('color')
    ->suffixAction(fn ($get) =>
        Forms\Components\Actions\Action::make('color-from-image')
            ->action(function ($set, array $data) {
                $set('color', $data['color']);
            })
            ->icon('heroicon-o-eye-dropper')
            ->form([
                ImageColorPicker::make('color')
                    ->format('hsl')
                    ->image(fn() => $get('image_url'))
            ])

    ),
```

You can capture the image from `FileUpload` component.

```
$uploadedFile = FileUpload::make('image');

return $form->schema([
    $uploadedFile,
    ImageColorPicker::make('color')->fromComponent($uploadedFile),
]);
```

### License

[](#license)

This package is open-source and available under the **MIT License**.

Preview
-------

[](#preview)

    preview.mp4

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance49

Moderate activity, may be stable

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~35 days

Recently: every ~61 days

Total

8

Last Release

370d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/983cda3e30a5a58d250f3bef7360267e0185b46e891f2f08e6683d0af9a9ddc7?d=identicon)[wallacemaxters](/maintainers/wallacemaxters)

---

Top Contributors

[![wallacemaxters](https://avatars.githubusercontent.com/u/5245865?v=4)](https://github.com/wallacemaxters "wallacemaxters (22 commits)")

---

Tags

laravelcolor pickerfilamentwallacemaxtersimage color picker

### Embed Badge

![Health badge](/badges/wallacemaxters-filament-image-color-picker/health.svg)

```
[![Health](https://phpackages.com/badges/wallacemaxters-filament-image-color-picker/health.svg)](https://phpackages.com/packages/wallacemaxters-filament-image-color-picker)
```

###  Alternatives

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3141.2M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3913.7k](/packages/rawilk-profile-filament-plugin)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128173.7k3](/packages/dotswan-filament-map-picker)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122157.7k1](/packages/stephenjude-filament-feature-flags)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

57301.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12451.0k](/packages/jibaymcs-filament-tour)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
