Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /proc/self/root/usr/local/src/php72/php-7.2.12/php-7.2.12/ext/gd/tests/ |
Current File : //proc/self/root/usr/local/src/php72/php-7.2.12/php-7.2.12/ext/gd/tests/bug67447.phpt |
--TEST-- Bug #67447 (imagecrop() adds a black line when cropping) --SKIPIF-- <?php if (!extension_loaded('gd')) { die("skip gd extension not available\n"); } ?> --FILE-- <?php // true color $image = imagecreatetruecolor(500, 500); $red = imagecolorallocate($image, 255, 0, 0); imagefill($image, 0, 0, $red); $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]); var_dump(imagecolorat($cropped, 249, 249) === $red); imagedestroy($image); imagedestroy($cropped); // palette $image = imagecreate(500, 500); imagecolorallocate($image, 0, 0, 255); // first palette color = background $red = imagecolorallocate($image, 255, 0, 0); imagefill($image, 0, 0, $red); $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]); var_dump(imagecolorsforindex($cropped, imagecolorat($cropped, 249, 249))); imagedestroy($image); imagedestroy($cropped); ?> --EXPECT-- bool(true) array(4) { ["red"]=> int(255) ["green"]=> int(0) ["blue"]=> int(0) ["alpha"]=> int(0) }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare