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?".
I am pretty new to imagemagick and have some problems. I don't know how to tell imagemagic that I want to have new line somewhere in my text. From input file it wouldn't be parsed.
My code:
comment: background.jpg is 800x600 image and input text is parsed from file, but where there are \n characters they are not parsed on image as new lines.
How to do that?
Thanks,
Vito.
A string argument read from a file will be read as 'literal'. That is a new line is a new line and a backslash is just a backslash. No escape codes are applied. This is on purpose as it assumes that any processing of text in a file has been done.
That is to add a new line (or paragrph break) in file text, should REALLY be a newline and not '\n'.