0
你好, i'm using this code和它的工作非常好,但它在正確加貼標識和IAM想要在左邊我怎麼能在左邊添加水印的圖像,不正確的
你好, i'm using this code和它的工作非常好,但它在正確加貼標識和IAM想要在左邊我怎麼能在左邊添加水印的圖像,不正確的
我看到這幾行:
21 // destination x and y
22 $imageWidth-$logoWidth, $imageHeight-$logoHeight,
那很可能是正確的(減去圖像的寬度)的底部(減去高)點,從水印開始的地方來寫。
去替代與例如本作左上:
21 // destination x and y
22 0 , 0,
或者,如果你想左下角,嘗試:
21 // destination x and y
22 0 , $imageHeight-$logoHeight,
在行22:
0, $imageHeight - $logoHeight,
任何你想要左角而不是右角的特殊原因?將水印放在右下角很常見... – Webnet