Example: Basic

example_basic.php

<?php

/**
 * Imagecolorallocatefromstring Example (Basic)
 *
 * Copyright (c) 2018-2022 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 5
 *
 * @category  Andrewgjohnson
 * @package   Imagecolorallocatefromstring
 * @author    Andrew G. Johnson <andrew@andrewgjohnson.com>
 * @copyright 2018-2022 Andrew G. Johnson <andrew@andrewgjohnson.com>
 * @license   https://opensource.org/licenses/mit/ The MIT License
 * @link      https://github.com/andrewgjohnson/imagecolorallocatefromstring
 */

// include the imagecolorallocatefromstring source if you're not using Composer
if (file_exists('../source/imagecolorallocatefromstring.php')) {
    include_once '../source/imagecolorallocatefromstring.php';
} else {
    die('imagecolorallocatefromstring.php not found');
}

// set the parameters for our image
$width           = 600;
$height          = 300;
$offset          = round($width / 7);
$squareWidth     = $offset * 2;
$squareHeight    = $height - ($offset * 2);

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

// set our image's colors
$backgroundColor = imagecolorallocate($im, 0xEE, 0xEE, 0xEE);
$redViaRgbValues = imagecolorallocate($im, 0xFF, 0x00, 0x00);
$redViaString    = imagecolorallocatefromstring($im, '#FF0000');

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

// fill our image with both colors
imagefilledrectangle(
    $im,
    $offset,
    $offset,
    $offset + $squareWidth,
    $offset + $squareHeight,
    $redViaRgbValues
);
imagefilledrectangle(
    $im,
    $offset + $squareWidth + $offset,
    $offset,
    $offset + $squareWidth + $offset + $squareWidth,
    $offset + $squareHeight,
    $redViaString
);

// display our image and destroy the GD resource
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);

Expected Output

example_basic.png

Example: Basic