AgjGd::imageblendedcolorallocate Example: Opacity

The $opacityColor1 parameter controls how much of each color ends up in the blend. The same blue and cyan are blended three times — at 75%, 50% and 25% blue — and the five colors are drawn together as a progression running from cyan through to blue.

Source Code: examples/imageblendedcolorallocate/03-opacity.php

<?php

/**
 * AgjGd Example (imageblendedcolorallocate: Opacity)
 *
 * Copyright (c) 2018–2026 Andrew G. Johnson <andrew@andrewgjohnson.com>
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to the following conditions:
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
 * Software.
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * PHP version 8
 *
 * @category  AndrewGJohnson
 * @package   AgjGd
 * @author    Andrew G. Johnson <andrew@andrewgjohnson.com>
 * @copyright 2018–2026 Andrew G. Johnson <andrew@andrewgjohnson.com>
 * @license   https://opensource.org/licenses/mit/ The MIT License
 * @link      https://github.com/andrewgjohnson/AgjGd
 */

use AndrewGJohnson\AgjGd;

// Load the AgjGd class directly from source, or fall back to the Composer autoloader
if (file_exists('../../source/AndrewGJohnson/AgjGd.php')) {
    require_once '../../source/AndrewGJohnson/AgjGd.php';
} elseif (file_exists('../../vendor/autoload.php')) {
    require_once '../../vendor/autoload.php';
} elseif (!class_exists('AndrewGJohnson\AgjGd')) {
    die('AndrewGJohnson\AgjGd class not found');
}

// Set the parameters for our image
$width           = 600;
$height          = 300;
$offset          = (int)round($width / 16);
$rectangleWidth  = $offset * 2;
$rectangleHeight = $height - ($offset * 2);

// Create our image
$im = imagecreatetruecolor($width, $height);

if ($im === false) {
    die('Could not create the image');
}

// Set our image’s colors, blending blue and cyan at three different ratios
$backgroundColor   = (int)imagecolorallocate($im, 0xEE, 0xEE, 0xEE);
$blue              = (int)imagecolorallocate($im, 0x00, 0x00, 0xFF);
$cyan              = (int)imagecolorallocate($im, 0x00, 0xFF, 0xFF);
$blendedMostlyBlue = (int)AgjGd::imageblendedcolorallocate($im, $blue, $cyan, 0.75); // 75% blue, 25% cyan
$blendedEvenly     = (int)AgjGd::imageblendedcolorallocate($im, $blue, $cyan);       // 50% blue, 50% cyan
$blendedMostlyCyan = (int)AgjGd::imageblendedcolorallocate($im, $blue, $cyan, 0.25); // 25% blue, 75% cyan

// Fill our image with the background color
imagefill($im, 0, 0, $backgroundColor);

// Fill our image with all of the colors, running from cyan through to blue
$colors = [$cyan, $blendedMostlyCyan, $blendedEvenly, $blendedMostlyBlue, $blue];

foreach ($colors as $index => $color) {
    imagefilledrectangle(
        $im,
        ($offset * ($index + 1)) + ($rectangleWidth * $index),
        $offset,
        ($offset + $rectangleWidth) * ($index + 1),
        $offset + $rectangleHeight,
        $color
    );
}

// Display our image
header('Content-Type: image/png');
imagepng($im);

Expected Output: examples/imageblendedcolorallocate/03-opacity.png

Example: Opacity