展示一下本地运行结果
为啥运行出现一大堆warning
为啥运行出现一大堆warning
2016-03-29
<?php
//这里仅仅是为了案例需要准备一些素材图片
$url = 'http://www.iyi8.com/uploadfile/2016/0820/20160820122921815.jpg';
$content = file_get_contents($url);
$filename = 'tmp.jpg';
file_put_contents($filename, $content);
$url = 'http://wiki.ubuntu.org.cn/images/3/3b/Qref_Edubuntu_Logo.png';
file_put_contents('logo.png', file_get_contents($url));
//开始添加水印操作
$im = imagecreatefromjpeg($filename);
$logo = imagecreatefrompng('logo.png');
$size = getimagesize('logo.png');
imagecopy($im, $logo, 150, 450, 0, 0, $size[0], $size[1]);
imagecopy($im, $logo, 260, 480, 0, 0, $size[0], $size[1]);
header("content-type: image/jpeg");
imagejpeg($im);
//换个打码的的图片,大家不要随便点开看
举报