-1
私のコードはうまくいっていますが、問題は1つで、画像URLを取得できません。サイトURLを取得するだけです。
透かし入りのこの例のURL:http://example.com/image.png
が必要です。
は、私はここに直接透かし画像のURLを取得したい<img src="http://example.com/image.png"/>
透かし画像と画像URLを取得
コード:
あなたはこのために.htaccessを使用する必要が<?php
$logo = 'http://www.slatecube.com/images/play-btn.png';
$img = 'http://i.imgur.com/GMjqTR7.jpg';
// Load the image where the logo will be embeded into
$image = imagecreatefromjpeg($img);
// Load the logo image
$logoImage = imagecreatefrompng("$logo");
imagealphablending($logoImage, true);
// Get dimensions
$imageWidth=imagesx($image);
$imageHeight=imagesy($image);
$logoWidth=imagesx($logoImage);
$logoHeight=imagesy($logoImage);
// Paste the logo
imagecopy(
// destination
$image,
// source
$logoImage,
// destination x and y
($imageWidth-$logoWidth)/2, ($imageHeight-$logoHeight)/2,
// source x and y
0, 0,
// width and height of the area of the source to copy
$logoWidth, $logoHeight);
// Set type of image and send the output
header("Content-type: image/png");
imagePng($image);
// Release memory
imageDestroy($image);
imageDestroy($imageLogo);
?>