-
PHP图片处理 透明水印的处理和添加
最近玩了下PHP的图片处理,实现了一个给图片添加水印或者是重叠两张图片的功能,把自己的解决过程记录下来。首先我需要将图片resize到640*480的尺寸,重绘的代码如下: $thumb = imagecreatetruecolor($newwidth, $newheight);$source = imagecreatefromjpeg($filename);imagecopyresampled($thumb, $source, 0, 0, 0, 0, $newwidth, $newheigh …