Как нарисовать полупрозрачный прямоугольник в PHP? - PullRequest
7 голосов
/ 09 декабря 2011

Вот пример того, что я хотел бы сделать:

enter image description here

Вот результат:

function red_rectangle($img_src,$x1,$y1,$x2,$y2,$tr = 50)
{
    // Load image
    $img = imagecreatefromjpeg($img_src);
    // Transparent red
    $red = imagecolorallocatealpha($img, 255, 0, 0, $tr);
    // Draw a white rectangle
    imagefilledrectangle($img, $x1, $y1, $x2, $y2, $red);
    // Save the image (overwrite)
    imagejpeg($img, $img_src);
    imagedestroy($img);
}

Ответы [ 2 ]

4 голосов
/ 09 декабря 2011

Вам нужно использовать http://php.net/manual/en/function.imagefilledrectangle.php,, передавая цвет, созданный с помощью http://www.php.net/manual/en/function.imagecolorallocatealpha.php.

Как видите, пример для http://php.net/manual/en/function.imagefilledrectangle.php практически то, что вы хотите сделать.

2 голосов
/ 25 января 2013
function red_rectangle($img_src,$x1,$y1,$x2,$y2,$tr = 100)
{
// Load image
$img = imagecreatefromjpeg($img_src);

// Transparent red
$red = imagecolorallocatealpha($img, 255, 0, 0, $tr);

// Draw a white rectangle
imagefilledrectangle($img, $x1, $y1, $x2, $y2, $red);


// Don't forget to output a correct header
header('Content-Type: image/jpg');

// Save the image (overwrite)
imagejpeg($img);
imagedestroy($img);
}
$img_src = 'test.jpg';
$x1= 500;
$y1= 450;
$x2 = 370;
$y2=180;
red_rectangle($img_src,$x1,$y1,$x2,$y2);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...