* 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 * * As of v2.0.0 imagegradientrectangle is part of AgjGd (https://agjgd.org). The implementation now lives in the * \AndrewGJohnson\AgjGd class provided by the andrewgjohnson/agjgd package, and the global imagegradientrectangle() * function below is a thin reverse-compatibility wrapper that forwards to it. * * Please use \AndrewGJohnson\AgjGd::imagegradientrectangle() rather than imagegradientrectangle(). * * This file deliberately does not declare strict_types so that loosely-typed calls written against the standalone * function keep coercing their arguments the way they always did. * * @category Andrewgjohnson * @package Imagegradientrectangle * @author Andrew G. Johnson * @copyright 2018-2026 Andrew G. Johnson * @license https://opensource.org/licenses/mit/ The MIT License * @link https://github.com/andrewgjohnson/imagegradientrectangle */ use AndrewGJohnson\AgjGd; if (!function_exists('imagegradientrectangle')) { /** * This function exists to support reverse compatibility. * * @deprecated 2.0.0 Use \AndrewGJohnson\AgjGd::imagegradientrectangle() instead. * * @param \GdImage $image A GdImage object. * @param int $x1 x-coordinate for point 1. * @param int $y1 y-coordinate for point 1. * @param int $x2 x-coordinate for point 2. * @param int $y2 y-coordinate for point 2. * @param int $color The start color. * @param ?int $gradientColor The finish color. * @param ?bool $horizontalGradient Whether or not to use a horizontal gradient. * * @return bool Returns TRUE on success or FALSE on failure. */ function imagegradientrectangle( $image, $x1, $y1, $x2, $y2, $color, $gradientColor = null, $horizontalGradient = false ) { return AgjGd::imagegradientrectangle( $image, $x1, $y1, $x2, $y2, $color, $gradientColor, $horizontalGradient ?? false ); } }