为了账号安全,请及时绑定邮箱和手机立即绑定

图片加水印,报错的解决方法

//保证可以解决!!! 图片路径、字体路径,等  自己 用你自己的 
 //不用去啥bom头,和加 ob_clean();有的加了这句,也不一定管用
$dst_path = "des_big.jpg";
//创建图片的实例
$dst = imagecreatefromstring(file_get_contents($dst_path));

//打上文字
$font = '../FONTS/MSYH.TTF';//字体路径

$color = imagecolorallocate($dst, 0x00, 0x00, 0x00);//字体颜色
imagefttext($dst, 13, 0, 20, 20, $color, $font, '快乐编程');
//输出图片
list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);
switch ($dst_type) {
    case 1://GIF
        header('Content-Type: image/gif');
        imagegif($dst);
        break;
    case 2://JPG
        header('Content-Type: image/jpeg');
        imagejpeg($dst);
        break;
    case 3://PNG
        header('Content-Type: image/png');
        imagepng($dst);
        break;
    default:
        break;
}


正在回答

1 回答

//加图片水印 图片和水印图片 ,自己试下,就分清了

$groundImg = "des_big.jpg";
$groundInfo = getimagesize($groundImg);
$ground_w = $groundInfo[0];
//print_r($groundInfo);
$ground_h = $groundInfo[1];
switch($groundInfo[2]){
case 1:
$ground_im = imagecreatefromgif($groundImg);
break;
case 2:
$ground_im = imagecreatefromjpeg($groundImg);
break;
case 3:
$ground_im = imagecreatefrompng($groundImg);
break;
}

$waterImg = "../images/logo.jpg";
$imgInfo =getimagesize($waterImg);
$water_w = $imgInfo[0];
$water_h = $imgInfo[1];

switch($imgInfo[2]){
case 1:
$water_im = imagecreatefromgif($waterImg);
break;
case 2:
$water_im = imagecreatefromjpeg($waterImg);
break;
case 3:
$water_im = imagecreatefrompng($waterImg);
break;
}
// imagecopy($ground_im,$water_im,100,100,0,0,500,500);
imagecopymerge($ground_im, $water_im, 0,0,0,0, $water_w, $water_h,30);
header("Content-type: image/jpeg");

imagejpeg($ground_im);

http://img1.sycdn.imooc.com//59bba20a0001d3af02680342.jpg

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
手把手教你实现电商网站后台开发
  • 参与学习       117285    人
  • 解答问题       1999    个

手把手教你用PHP搭建电子商务平台,由浅入深教你搭建电商系统

进入课程

图片加水印,报错的解决方法

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信