Răsfoiți Sursa

图片水印倾斜角度

yeshihao 1 an în urmă
părinte
comite
9904c9eb70

+ 2 - 2
dyu/application/common/service/watermark/image/Image.php

@@ -171,10 +171,10 @@ class Image
 		// 添加水印文字  // imagettftext() 的参数依次是:图片资源, 字体大小, 旋转角度, X坐标, Y坐标, 颜色, 字体文件, 文本内容
 		imagettftext($image, $fontSize, $angle, $fontX, $fontY, $color, $fontPath, $waterText);
 		if ($waterText2) {
-			imagettftext($image, $fontSize, $angle, $fontX + 1.5 * $fontSize, $fontY + 0.5 * $fontSize, $color, $fontPath, $waterText2);
+			imagettftext($image, $fontSize, $angle, $fontX + 1 * $fontSize, $fontY + 1.5 * $fontSize, $color, $fontPath, $waterText2);
 		}
 		if ($waterText3) {
-			imagettftext($image, $fontSize, $angle, $fontX - 0.5 * $fontSize, $fontY - 1.5 * $fontSize, $color, $fontPath, $waterText3);
+			imagettftext($image, $fontSize, $angle, $fontX - 1 * $fontSize, $fontY - 1.5 * $fontSize, $color, $fontPath, $waterText3);
 		}
 
 		// 保存带有水印的图片