什么意思??
<?php
//这里仅仅是为了案例需要准备一些素材图片
$url = 'http://www.iyi8.com/uploadfile/2014/0521/20140521105216901.jpg';
$content = file_get_contents($url);根据url读入文件
$filename = 'tmp.jpg';
file_put_contents($filename, $content);写进tmp,jpg中
$url = 'http://wiki.ubuntu.org.cn/images/3/3b/Qref_Edubuntu_Logo.png';
file_put_contents('logo.png', file_get_contents($url));写进logo.png中
//开始添加水印操作
$im = imagecreatefromjpeg($filename);创建画布根据tmp.jpg图片
$logo = imagecreatefrompng('logo.png');创建画布根据logo.jpg图片
$size = getimagesize('logo.png');获取图像大小
imagecopy($im, $logo, 15, 15, 0, 0, $size[0], $size[1]);
header("content-type: image/jpeg");
imagejpeg($im);
是不是这样的???