更多>
最新下载
24小时阅读排行榜
- 1 生日祝福html源代码怎么运行_运行生日祝福html源代码法【教程】
- 2 光遇:女巫长裙获取攻略
- 3 场馆预约小程序适合哪些行业使用?
- 4 轮回修仙传全结局触发条件一览
- 5 写好的html代码怎么在手机上运行_手机运行写好的html代码步骤【指南】
- 6 如何在Go测试中正确处理相对路径
- 7 php源码怎么一起运行_同运php源码操作方法【技巧】
- 8 html界面要怎么创建并运行_创建并运行html界面步骤【教程】
- 9 用手机写完html代码后怎么运行_手机写完html运行步骤【指南】
- 10 html怎么在浏览器上运行php文件_浏览器运html中php文件方法【教程】
- 11 如何用SublimeJ写Go_Debug断点可视化设置
- 12 html5怎么在浏览器上运行_html5浏览器运行配置【教程】
- 13 怎么给php网站源码加授权_给php网站源码加授权方法【设置】
- 14 什么是SaaS模式预约小程序?
- 15 html中的js代码怎么运行_运行html中js代码方法【教程】
更多>
最新教程
-
- Node.js 教程
- 11124 2025-08-28
-
- CSS3 教程
- 1290446 2025-08-27
-
- Rust 教程
- 17344 2025-08-27
-
- Vue 教程
- 20190 2025-08-22
-
- PostgreSQL 教程
- 18166 2025-08-21
-
- Git 教程
- 7379 2025-08-21
下载首页 / 类库下载 / 其它类库
<?php
namespace League\ColorExtractor\Test;
use League\ColorExtractor\Color;
use League\ColorExtractor\ColorExtractor;
use League\ColorExtractor\Palette;
class PaletteTest extends \PHPUnit_Framework_TestCase
{
protected $jpegPath = './tests/assets/test.jpeg';
protected $gifPath = './tests/assets/test.gif';
protected $pngPath = './tests/assets/test.png';
protected $transparentPngPath = './tests/assets/red-transparent-50.png';
public function testJpegExtractSingleColor()
{
$extractor = new ColorExtractor(Palette::fromFilename($this->jpegPath));
$colors = $extractor->extract(1);
$this->assertInternalType('array', $colors);
$this->assertCount(1, $colors);
$this->assertEquals(15985688, $colors[0]);
}
public function testGifExtractSingleColor()
{
$extractor = new ColorExtractor(Palette::fromFilename($this->gifPath));
$colors = $extractor->extract(1);
$this->assertInternalType('array', $colors);
$this->assertCount(1, $colors);
$this->assertEquals(12022491, $colors[0]);
}本库的13个特点
1.颜色抓取让你挑,即时用相机检测和识别颜色。
2.应用程序是专为图形设计人员和颜色百叶窗。
3.颜色名称,色调,RGB和HSV的表示法。
(没有点击捕获为必填项)实时色彩诊断。
4.设置拍摄的颜色坚实的壁纸。
5.智能色彩稳定。
6.智能自动对焦。
7.相机手电筒,接通/关断。
8.支持所有手机的摄像头(前后)。
9.即时颜色的挑选和保存。
10.色彩,颜色名称,RGB十六进制,RGB十进制和HSV表示。
11.截至1300颜色和16种基本颜色分类。
12.即时共享和导出捕获的颜色。
13.嵌入式帮助。
本站所有资源都是由网友投搞发布,或转载各大下载站,请自行检测软件的完整性!本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!如有侵权请联系我们删除下架,联系方式:admin@php.cn

