php , gd, 创建水印, 更改水印文本大小和背景颜色, imagecreatefromjpeg
我需要创建一个水印,将其应用到图片上并使用不同的名称保存。当前的脚本运行得很好,但唯一的问题是我需要增加“示例文本”的大小并将背景从黑色更改为白色。我尝试了不同的场景,改变了不透明度,但仍然无法改变背景颜色。
function watermark($imag_path, $photo_id) {
// Load the stamp and the photo to apply the watermark to
$im = imagecreatefromjpeg("$imag_path");
echo "imag_path is $imag_path and photoid is $photo_id";
// First we create our stamp image manually from GD
$stamp = imagecreatetruecolor(490, 20);
//$im = imagecreatefromjpeg("$photo_id");
imagestring($stamp, 5, 20, 2, 'sample text', 0xff0000);
// 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);
// Merge the stamp onto our photo with an opacity (transparency) of 100%
imagecopymerge($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp), 100);
$new_photo_id = $photo_id . "sample.JPG";
// Save the image to file and free memory
imagejpeg($im, "tmp/$new_photo_id");
imagedestroy($im);
}
I need to create a watermark apply it on a picture and save it with a different name . The current script works pretty well but the only problem is that I need to increase the size of the "sample text" and change the background from black to white . I tried different scenarios , changed the opacity but still can't change the background color.
function watermark($imag_path, $photo_id) {
// Load the stamp and the photo to apply the watermark to
$im = imagecreatefromjpeg("$imag_path");
echo "imag_path is $imag_path and photoid is $photo_id";
// First we create our stamp image manually from GD
$stamp = imagecreatetruecolor(490, 20);
//$im = imagecreatefromjpeg("$photo_id");
imagestring($stamp, 5, 20, 2, 'sample text', 0xff0000);
// 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);
// Merge the stamp onto our photo with an opacity (transparency) of 100%
imagecopymerge($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp), 100);
$new_photo_id = $photo_id . "sample.JPG";
// Save the image to file and free memory
imagejpeg($im, "tmp/$new_photo_id");
imagedestroy($im);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么要使用邮票?我在我的一个网站上使用以下代码:
该代码运行速度足够快,我们可以使用它在下载照片部分的照片时动态添加动态标签,而不是将它们保存到磁盘。
Why use a stamp at all? I use the following code on one of my sites:
This code runs fast enough that we use it to add dynamic labels on the fly to photos from our photo section as they're downloaded, rather than save them to disk.
在我的代码中,我修复了一些常见错误,例如:
所以我计算图像宽度并决定字体大小。所以字体大小是动态的。
所以你可以复制我的方法并粘贴到你想要使用它的地方。
here in my code, i fixed some common mistakes like :
So i calculate image width and decide font size. so font size is Dynamic.
so you can just copy my method and paste where you want to use it.