Page 1 of 1

hw to put space in between annotated text

Posted: 2017-08-12T17:20:43-07:00
by dt59

Code: Select all

exec("magick cake1.png -fill #991918 -annotate 355x355+0+0 dave dte")
the above code will generate error simply because of the space in between dave and dte any idea on hw to deal with dese issue

Re: hw to put space in between annotated text

Posted: 2017-08-12T18:06:54-07:00
by fmw42
Use single quotes as below, especially around your text string

Code: Select all

exec("magick cake1.png -fill '#991918' -annotate 355x355+0+0 'dave dte'")
In the future please (always) provide your IM version and platform/OS.

Re: hw to put space in between annotated text

Posted: 2017-08-13T23:12:58-07:00
by dt59
its prints the name with the single quote and dats not wat i want