如何使用GD库在图像上插入图像?

时间:2018-01-09 01:45:30

标签: php gd

我有一个用户可以拥有会员卡的系统。我已经在图像上做了文字,但我想要的是使用GD库将他们的照片放在会员卡上。我似乎无法找到解决方案,或者我只是在谷歌搜索不好。我将不胜感激任何帮助。到目前为止,这是我的代码:

header("Content-type: image/jpeg");
$imgPath = base_url().'/assets/images/membershipcard.jpg';
$image = imagecreatefromjpeg($imgPath);
$color = imagecolorallocate($image, 255, 255, 255);
$font_path = './assets/fonts/Roboto.ttf';
$string = $cust_fn." ".$cust_ln;
$fontsize = 40;
$x = 30;
$y = 530;

imagettftext ($image , $fontsize , 0 , $x , $y , $color , $font_path, $string );
imagejpeg($image);

0 个答案:

没有答案