Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
imagemagic を使用して透かし画像を配置しました。次のコードを使用して、透かしを中央に表示しました。
shell_exec("composite -gravity center logo.png images/test.png images/test.png");
ここで、透かしを右下隅に表示したいと思います。
このために、私はコードを試しました:
composite -geometry -10-10
しかし、これを右下に表示できませんでした。
使用する:
shell_exec("composite -gravity SouthEast logo.png images/test.png images/test.png");