web-dev-qa-db-ja.com

PHPで画像に「透かし」を追加する

ユーザーが画像をアップロードできるウェブサイトを持っています...

画像をアップロードしたら、ロゴ(透かし)を画像に追加する必要があります。

どうすればできますか?

そして、透かしが見える隅にあることが重要です。たとえば、その場で透かしを生成し、メイン画像の背景が「同じ色」の場所にマークを付けるウェブサイトを見たことがあります。あなたが私が意味することを知っていれば、透かしが突き出ています。

誰もこれについて良いチュートリアルや記事を持っていますか?または、透かしの位置を見つけるために必要なPHPの関数を知っていますか?

40
pesar

A 良い例 PHPマニュアル:

// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('photo.jpeg');

// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);

// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));

// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
49
XUE Can

この機能を使用する
透かし画像のタイプは「png」である必要があります

 function watermark_image($target, $wtrmrk_file, $newcopy) {
    $watermark = imagecreatefrompng($wtrmrk_file);
    imagealphablending($watermark, false);
    imagesavealpha($watermark, true);
    $img = imagecreatefromjpeg($target);
    $img_w = imagesx($img);
    $img_h = imagesy($img);
    $wtrmrk_w = imagesx($watermark);
    $wtrmrk_h = imagesy($watermark);
    $dst_x = ($img_w / 2) - ($wtrmrk_w / 2); // For centering the watermark on any image
    $dst_y = ($img_h / 2) - ($wtrmrk_h / 2); // For centering the watermark on any image
    imagecopy($img, $watermark, $dst_x, $dst_y, 0, 0, $wtrmrk_w, $wtrmrk_h);
    imagejpeg($img, $newcopy, 100);
    imagedestroy($img);
    imagedestroy($watermark);
}

watermark_image('image_name.jpg','watermark.png', 'new_image_name.jpg');
14
iraqi_love4ever

透かし画像の良い例で、中央に配置

<?php
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('stampimg.png');
$im = imagecreatefrompng('mainimage.png');

// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);

$imgx = imagesx($im);
$imgy = imagesy($im);
$centerX=round($imgx/2);
$centerY=round($imgy/2);

// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 
imagecopy($im, $stamp, $centerX, $centerY, 0, 0, imagesx($stamp), imagesy($stamp));

// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
12
Sailee Shahir

.htaccessを使用して動的に透かしを追加するはるかに優れたソリューションを見つけました。チュートリアルは次の場所にあります。

htaccessを介して画像に透かしを追加

カスタム.htaccessファイル、ウォーターマーク.php暗号、およびウォーターマーク.png画像をアップロードすると、フォルダーとそのサブフォルダー内のすべての画像にウォーターマークが表示されますが、元のファイルは引き続きサーバーに保持されます。

それが私に役立ったのと同じ誰かを助けることを願っています。

3
Alberto

これは、 Gd または ImageMagick などの画像操作ライブラリを使用して実行できます。 Gdを使用してそれを行う方法を説明するチュートリアルを次に示します。

http://articles.sitepoint.com/article/watermark-images-php

2
Jimmy Cuadra

ImageMagick はそのためにうまく機能します。前にやったことがあります。ただし、ビジネス全体は少し苦痛です。特にファンシーなブレンドモードなどが必要な場合。

2
Gabriel Hurley
// Load the stamp and the photo to apply the watermark to

$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('photo.jpg');
$save_watermark_photo_address = 'watermark_photo.jpg';

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

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

// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 

imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));

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

imagejpeg($im, $save_watermark_photo_address, 80); 
imagedestroy($im);
2
Baz Love