如果我想添加ios images / rank 1.jpg,你如何在php中为图像添加另一个图像?
$rImg = ImageCreateFromJPEG("images/card/test.jpg");
$cor = imagecolorallocate($rImg, 255, 255, 255);
imagestring($rImg,5,60,3,$username,$cor);
答案 0 :(得分:3)
您正在寻找像imagecopyresampled()这样的imagecopy ...()函数。
手册中的用户贡献说明提供了大量示例。如果您想添加透明度的水印,this可能适合您。