montage problem
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
How can I add text to out.png from the command ?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: montage problem
For many examples see http://www.imagemagick.org/Usage/text/
snibgo's IM pages: im.snibgo.com
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
I want use annotate command : am I right?
Code: Select all
-annotate result.png "text 100,100 'Works like magick!' "
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
For example, I have this image . And I need this
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
Unfortunately, I don't have enough time to figure it out by myself((snibgo wrote:No.
See the examples on the page I linked to.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: montage problem
This is NOT a montage issue. It is just a simple convert command.
See
http://www.imagemagick.org/script/comma ... p#annotate
http://www.imagemagick.org/Usage/text/#annotate
You need to put your input image first, then the settings, then the operators, then the output last. That is standard IM syntax. See http://www.imagemagick.org/Usage/basics/#cmdline
You must escape the ! in this case when in the text you want to use. Try unix syntax:
in windows, the escape is ^!
Please read the documenation and take some time to learn. The documenation is very clear how to format the command for -annotate.-annotate result.png "text 100,100 'Works like magick!' "
See
http://www.imagemagick.org/script/comma ... p#annotate
http://www.imagemagick.org/Usage/text/#annotate
You need to put your input image first, then the settings, then the operators, then the output last. That is standard IM syntax. See http://www.imagemagick.org/Usage/basics/#cmdline
You must escape the ! in this case when in the text you want to use. Try unix syntax:
Code: Select all
convert mark_1.jpg -fill red -pointsize 36 -annotate +100+100 "Works like magick\!" result.png
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
Okey, thanks!!You such a good person
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
P.S. the final little question..How can I change working directory of command prompt?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: montage problem
What do you mean by command prompt? There is no GUI. This is all from the command line in a terminal window.guitarking123 wrote:P.S. the final little question..How can I change working directory of command prompt?
If you are in a terminal window and what to change directories, use the cd command.
Google "bash change directory" to learn about it. Or "bash man change directory" to get to the man (manual) pages for the command to see the syntax. Use Google to get answers about Unix command syntax.
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
Okey, thanks
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
Can I use russian words in commands for file name? for example
Code: Select all
convert 1.jpg 2.jpg 3.jpg +append head.png -append результат.jpg
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: montage problem
I don't know. Try it and see how it works. Depends upon your file system, I suppose.
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
It is working, thanks for reply
-
- Posts: 22
- Joined: 2016-02-22T12:54:41-07:00
- Authentication code: 1151
Re: montage problem
Can I cut from image window with fixed position and fixed size?