用gd制作混合图像

时间:2018-11-20 13:22:44

标签: php gd

我试图用php和gd库制作表格。 表单包含带有透明包装的png徽标。 现在我有3个问题:

  1. 当我做边框时,我想将徽标放在 图片,其背景不再透明

  2. im使用波斯字体并使用imagettftext函数。它显示了 字符,但在波斯语中我们已经合并了单词,但它显示了 字符分隔

  3. 如何绘制圆角边框

这是我的代码:

$fontSize=4;
$width = imagefontwidth($font) * strlen($string)+10 ;
$height = imagefontheight($font) ;


$handle = ImageCreate (800, 400) or die ("Cannot Create image");
$logo = imagecreatefrompng( 'Logo.png' );

$bg_color = ImageColorAllocate ($handle, 255, 240, 250);
$txt_color = ImageColorAllocate ($handle, 0, 0, 0);

$title="فرم قرارداد";
$font = "IRANSans.ttf";
$title_size = 18;
imagettftext( $handle, $title_size, 0, 620, 100, $txt_color, $font, $title );

$black = imagecolorallocate($handle, 0, 0, 0);
imagerectangle($handle, 20, 20, 780, 380, $black);
imagecopy($handle, $logo, 10, 10, 0, 0, 161, 160);

  header('Content-Type: image/png');
    imagepng($handle);

1 个答案:

答案 0 :(得分:0)

  1. 查看此答案:php GD create a transparent png image
  2. 如果要利用您语言的印刷特征,则必须使用OpenType(.otf)字体。
  3. 您可能想看看GD的imagearc