2011-02-08 68 views

回答

5

我看到這幾行:

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, 
1

在行22:

0, $imageHeight - $logoHeight,