已张贴图像上的水印

时间:2014-11-08 10:29:44

标签: php watermark

所以在这个网站上,一个管理员发布一个图像,然后通过sql发送到数据库我想添加一个水印。这是我这部分的代码。

  if(!$_POST['name'] | !$_POST['cat'] | !$_POST['frame'] | !$_POST['molding'] | !$_POST['price'] | $_FILES["photo"]["tmp_name"]) {

    die('You did not fill in a required field.');

    }

$image = file_get_contents($_FILES['photo']['tmp_name']);
$_POST['name'] = addslashes($_POST['name']);
$_POST['price'] = addslashes($_POST['price']);
$_POST['molding'] = addslashes($_POST['molding']);
$_POST['frame'] = addslashes($_POST['frame']);
$_POST['cat'] = addslashes($_POST['cat']);



// Load the stamp and the photo to apply the watermark to

$stamp = imagecreatefrompng('watermark2.PNG');

$save_watermark_photo_address = 'watermark_photo2.jpg';

// Set the margins for the stamp and get the height/width of the stamp image

$marge_right = 0;
$marge_bottom = 0;
$sx = imagesx($stamp);
$sy = imagesy($stamp);


$imgx = imagesx($image);
$imgy = imagesy($image);
$centerX=round($imgx/2) - ($sx/2);
$centerY=round($imgy/2) - ($sy/2);
// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 

imagecopy($image, $stamp, $centerX, $centerY, 0, 0, imagesx($stamp), imagesy($stamp));


// Output and free memory
//header('Content-type: image/png');

imagejpeg($image, $save_watermark_photo_address, 80);

最后的保存部分是检查它。

任何使用$ image的内容都会出现错误 期望参数1是资源,字符串在。

中给出

我认为这意味着图片格式错误,但我不知道如何修复它。

在添加水印代码之前,对于任何人的信息,一切都很完美。

1 个答案:

答案 0 :(得分:0)

有关更多说明, 你可能想用这个

old colde:

$image = file_get_contents($_FILES['photo']['tmp_name']);

新代码:

$imgData= file_get_contents($_FILES['photo']['tmp_name']);
$image = imagecreatefromstring( $imgData);

这是对我上述评论的澄清。