nikkanetiya/laravel-color-palette
Composer 安装命令:
composer require nikkanetiya/laravel-color-palette
包简介
Laravel Wrapper for `ksubileau/color-thief-php`. Grabs the dominant color or a representative color palette from an image. Uses PHP and GD or Imagick.
README 文档
README
Laravel Wrapper for Color-Thief-PHP with additional changes. Grabs the dominant color or a representative color palette from an image. Uses PHP and GD or Imagick.
This Laravel package is extremely useful to grab dominant color or a representative color palette from images. See this image for the example.
Contents
Installation
You can install the package via Composer:
composer require nikkanetiya/laravel-color-palette
You must install the service provider (For Laravel < 5.5):
// config/app.php 'providers' => [ ... NikKanetiya\LaravelColorPalette\ColorPaletteServiceProvider::class, ],
Register facade:
// config/app.php 'aliases' => [ ... 'ColorPalette' => NikKanetiya\LaravelColorPalette\ColorPaletteFacade::class, ],
Available Methods
-
getColor() - Use this method to get most dominant single color form image
Example:
// get most dominant color from image $color = ColorPalette::getColor( 'https://rawcdn.githack.com/nikkanetiya/laravel-color-palette/master/tests/images/strawberry.jpeg' ); // Color provides several getters/properties echo $color; // '#dc5550' echo $color->rgbString; // 'rgb(220,85,80)' echo $color->rgbaString; // 'rgba(220,85,80,1)' echo $color->int; // 14439760 print_r($color->rgb); // array(220, 85, 80) print_r($color->rgba); // array(220, 85, 80, 1)
Options
$color = ColorPalette::getColor($sourceImage, $quality = 10, $area = null );
By default,
getColorwill have quality -> 10 and specific area -> null.Qualitycan be int. 1 is the highest quality. There is a trade-off between quality and speed. The bigger the number, the faster the palette generation but the greater the likelihood that colors will be missed.Areacan be array|null $area[x,y,w,h]. It allows you to specify a rectangular area in the image in order to get colors only for this area. It needs to be an associative array with the following keys:- $area['x']: The x-coordinate of the top left corner of the area. Default to 0.
- $area['y']: The y-coordinate of the top left corner of the area. Default to 0.
- $area['w']: The width of the area. Default to image width minus x-coordinate.
- $area['h']: The height of the area. Default to image height minus y-coordinate.
-
getPalette() - Use this method to find representative color palette form image.
Example:
// get colors from image $colors = ColorPalette::getPalette( 'https://github.com/nikkanetiya/laravel-color-palette/blob/master/tests/images/strawberry.jpeg' ); foreach($colors as $color) { // } // Colors will be array of Color Objects
Options
$color = ColorPalette::getPalette($sourceImage, $colorCount = 10, $quality = 10, $area = null)
colorCountcan be 2 to 256. It is the number of colors you want to retrieve for the image.Quality&Areais same as above.
Image Source: https://www.pexels.com, google image
nikkanetiya/laravel-color-palette 适用场景与选型建议
nikkanetiya/laravel-color-palette 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12.67k 次下载、GitHub Stars 达 33, 最近一次更新时间为 2017 年 07 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「gd」 「laravel」 「image-colors」 「color-palette」 「color-thief」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 nikkanetiya/laravel-color-palette 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 nikkanetiya/laravel-color-palette 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 nikkanetiya/laravel-color-palette 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel Wrapper for `ksubileau/color-thief-php`. Grabs the dominant color or a representative color palette from an image. Uses PHP and GD or Imagick.
Alfabank REST API integration
Simple way to get the colors from a given image, will give tou the percentage and the colors hex.
Laravel Wrapper for `ksubileau/color-thief-php`. Grabs the dominant color or a representative color palette from an image. Uses PHP and GD or Imagick.
Zero-dependency raw PHP DNS resolver, domain-ownership verification, and intoDNS/MxToolbox-style diagnostics. Queries authoritative nameservers directly over sockets — never trusts the recursive cache for ownership checks.
Laravel Wrapper for `ksubileau/color-thief-php`. Grabs the dominant color or a representative color palette from an image. Uses PHP and GD or Imagick.
统计信息
- 总下载量: 12.67k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 33
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2017-07-09