frnxstd/hex2rgba

hex2rgba is a sample project to convert hexadecimal color codes to rgba

dev-master 2018-08-01 06:47 UTC

This package is auto-updated.

Last update: 2024-05-29 04:21:30 UTC


README

It's a small PHP pack to convert hexadecimal color to rgba!

Installation

Run the command in your project folder:

composer require frnxstd/hex2rgba

Example usage

<?php
require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload

use hex2rgba\hex2rgba;

/** @var hex2rgba $hex2rgba */
$hex2rgba = new hex2rgba();

$cases = array(
    array('#FFF',    '0.3'),
    array('#FFFFFF', 1),
    array('FFF',     '.5'),
    array('FFFFFF',  1),
    array('FFFFF',   1)
);

foreach ($cases as $case)
{
    try{
        echo $hex2rgba->convert($case[0], $case[1]);

        echo '<hr>';

    } catch (Exception $exception)
    {
        die($exception->getMessage());
    }
}