把大图像放在PHP的小图像上

时间:2013-08-21 17:14:12

标签: php image

我是php的新秀。

$qrImage = imagecreatefrompng($filename);
$tempImage = imagecreatefrompng("image/facebook.png");
$LogoImage = imagecreatetruecolor($matrixPointSize*5, $matrixPointSize*5);

// Resize Logo.
imagecopyresampled($LogoImage, $tempImage, 0, 0, 0, 0, imagesx($LogoImage), imagesy($LogoImage), imagesx($tempImage), imagesy($tempImage));

$src_x = (imagesx($qrImage)/2)-(imagesx($LogoImage)/2);
$src_y = (imagesy($qrImage)/2)-(imagesy($LogoImage)/2);

imagecopymerge($qrImage, $LogoImage, $src_x, $src_y, 0, 0, $matrixPointSize*5, $matrixPointSize*5, 90);

header("Content-Type: image/png");
imagepng($qrImage);

使用此代码图像看起来像

enter image description here

我想在qrCode图像的背景上放置徽标。

有没有办法将此图像保存为svg文件??

任何人都可以帮助我吗?

0 个答案:

没有答案