1

我试图在另一个灰色背景的图像中插入一个具有透明背景的 PNG 图像,但是当我使用 imagecopymerge 时,我得到了黑色背景,而使用 imagecopy,我在上图中的最终图像行中得到了透明的地方:

在此处输入图像描述

 imagecopymerge($image, $turquoise, 120, 120, 0, 0, 16, 16,100);
 imagecopy($image, $turquoise, 140, 140, 0, 0, 16, 16);

即使我使用与否:

 imagesavealpha($image, true);
 imagealphablending($image, true);
4

0 回答 0