--TEST--
Bug #39366 (imagerotate does not respect alpha with angles>45)
--SKIPIF--
<?php
    
if (!extension_loaded('gd')) die("skip gd extension not available\n");
    if (!
function_exists("imagerotate")) die("skip requires bundled GD library\n");
?>
--FILE--
<?php

$im 
imagecreatetruecolor(10,10);
imagealphablending($im0);
imagefilledrectangle($im0,08,80x32FF0000);
$rotate imagerotate($im1800);
imagecolortransparent($rotate,0);
imagesavealpha($rotatetrue);
$c imagecolorat($rotate,5,5);
printf("%X\n"$c);
?>
--EXPECTF--
32FF0000