0

私は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);

このコード画像を使用すると、次のようになります

ここに画像の説明を入力

qrCode画像の背景にロゴを入れたいです。

この画像をsvgファイルとして保存する方法はありますか??

誰でも私を助けることができますか??

4

0 に答える 0