php上传图片并设置透明图片水印效果
Libérer: 2016-07-25 08:51:50
original
1040 Les gens l'ont consulté
-
-
$im = imagecreatefromjpeg($_file["upload"]["tmp_name"]); //图片
- $watermark = imagecreatefrompng("Smiley.png"); //水印图的路径
- $im_x = imagesx($im);
- $im_y = imagesy($im);
- $w_x = imagesx($watermark);
- $w_y = imagesy($watermark);
- imagecopy($im,$watermark ,$im_x-$w_x,$im_y-$w_y,0,0,$w_x,$w_y);
- imagejpeg($im); //可加上路径以保存有水印的图
//利用type判断下图片类型
- //switch($_file["upload"]["type"])
- //case:1
- //其它gd库函数
- //imagejpeg()对应jpeg
- //imagegif()对应gif
- //imagepng()对应png
- imagedestroy($im);
-
复制代码
|
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31