Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
composite -tile -gravity center logofuli.png myg182_01.jpg test.jpg
my english is a little poor, sorry, maybe i did not describe well.
Resize the logofuli.png to fit your image
1. Get the width and height of the output image
2. Resize your PNG file in accordance with the width & height obtained from (1)
convert -resize WidthXHeight logofuli.png logofuli_Resized.png
3. If you want the watermark to be low then you can adjust the width and height accordingly with what you obtained from (1)
4. Use logofuli_Resized.png and apply it on your output image
composite -tile -gravity center logofuli.png myg182_01.jpg test.jpg
my english is a little poor, sorry, maybe i did not describe well.
Resize the logofuli.png to fit your image
1. Get the width and height of the output image
2. Resize your PNG file in accordance with the width & height obtained from (1)
convert -resize WidthXHeight logofuli.png logofuli_Resized.png
3. If you want the watermark to be low then you can adjust the width and height accordingly with what you obtained from (1)
4. Use logofuli_Resized.png and apply it on your output image
thanks
does this mean we can not add parameter to -tile command that can control the watermark's number and position?