Как добавить поле с закругленными границами на изображении с помощью php? - PullRequest
0 голосов
/ 18 марта 2011

Я использую этот код ---

<?php
// Set the content-type
header('Content-type: image/png');

// Create the image
$im = @imagecreatefromjpeg('031.jpg');

// Create some colors
$back = imagecolorallocate($im, 70, 70, 70);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 110, 150, 195);
imagefilledrectangle($im, 70, 120, 180, 60, $back);

// The text to draw
$text = 'Name';
// Replace path by your own font path
$font = 'AGENCYB.TTF';

// Add the text
imagettftext($im, 20, 0, 100, 100, $black, $font, $text);

// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>

Но я хочу добавить к нему круглый угол.

1 Ответ

1 голос
/ 18 марта 2011

посмотрите на этот пример ссылка

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...