douquanhui5735 2019-01-13 20:40
浏览 60
已采纳

可以在没有autoload.php(作曲家)的情况下使用thephpleague / color-extractor吗?

I'my trying to use color-extractor to get the colours of my images but I'm having trouble getting it working.

I noticed a missing autoload.php file in the package and after some googling it seems it requires that you use Composer. I haven't used composer and don't have much experience using the command line yet. Something I am working on but hoping not to have to learn it all before using this php package.

I tried changing some of the php lines from this:

require 'vendor/autoload.php';

use League\ColorExtractor\Color;
use League\ColorExtractor\ColorExtractor;
use League\ColorExtractor\Palette;

to this:

require ..\lib\League\ColorExtractor\Color;
require ..\lib\League\ColorExtractor\ColorExtractor;
require ..\lib\League\ColorExtractor\Palette;

But it didn't work and I got these errors:

[14-Jan-2019 07:00:43 Australia/Sydney] PHP Fatal error:  require(): Failed opening required 'lib/League/ColorExtractor/Color.php' (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home/windowvi/public_html/arena/examples/grid2/php/get_collection.php on line 3
[14-Jan-2019 07:07:14 Australia/Sydney] PHP Fatal error:  Class 'Palette' not found in /home/windowvi/public_html/arena/examples/grid2/php/get_collection.php on line 55

Can this package be used without learning and using composer and if so, how would I require/include the files?

Thanks!

  • 写回答

1条回答 默认 最新

  • drqj8605 2019-01-13 22:35
    关注

    Hopefully this will help you on your way.

    Create a project folder called e.g. ‘colorextractor’

    Copy-paste the 3 files from thephpleague/color-extractor/src/League/ColorExtractor

    1. Color.php
    2. ColorExtractor.php
    3. Palette.php

    Into your project folder.

    Then create an index.php file (see below) that will run the examples from the README at thephpleague/color-extractor – to ensure it all works as expected.

    Your project folder should have the following content: enter image description here

    Note: I used a ‘testimage.png’ to test the package in index.php

    index.php

    <?php
    // import package namespaces
    use League\ColorExtractor\Color;
    use League\ColorExtractor\ColorExtractor;
    use League\ColorExtractor\Palette;
    
    // if you don't use an autoloader
    // you need to require the package files
    require __DIR__ . "/Color.php";
    require __DIR__ . "/ColorExtractor.php";
    require __DIR__ . "/Palette.php";
    
    // the example from the README at ColorExtractor
    $palette = Palette::fromFilename('./testimage.png');
    // $palette is an iterator on colors sorted by pixel count
    foreach($palette as $color => $count) {
        // colors are represented by integers
        echo Color::fromIntToHex($color), ': ', $count, "
    ";
    }
    echo '<br />';
    // it offers some helpers too
    $topFive = $palette->getMostUsedColors(5);
    echo '<br />';
    echo 'top 5 most used colors:';
    echo '<pre>';
    print_r($topFive);
    echo '</pre>';
    
    $colorCount = count($palette);
    echo '<br />';
    echo "color count: " . $colorCount;
    echo '<br />';
    
    // this example gave me a 'notice: undefined offset'
    //$blackCount = $palette->getColorCount(Color::fromHexToInt('#000000'));
    //echo '<br />';
    //echo "black count " . $blackCount;
    
    
    // an extractor is built from a palette
    $extractor = new ColorExtractor($palette);
    // it defines an extract method which return the most “representative” colors
    $colors = $extractor->extract(5);
    echo '<br />';
    echo 'most representative colors:';
    echo '<pre>';
    print_r($colors);
    echo '</pre>';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码