Search found 2 matches

by krukid
2019-09-04T07:54:03-07:00
Forum: Bugs
Topic: possible bug with pango: and & or & in text string
Replies: 3
Views: 43076

Re: possible bug with pango: and & or & in text string

note that to avoid the weird handling of html entities and backslashes you can also pipe the text via stdin:

Code: Select all

echo -n "& text" | magick -define pango:markup=false pango:@- tmp.png
by krukid
2019-09-02T18:41:22-07:00
Forum: Users
Topic: Setting interline-spacing with Pango?
Replies: 3
Views: 11066

Re: Setting interline-spacing with Pango?

Pango itself supports various layout options as you can see here: https://developer.gnome.org/pango/stable/pango-Layout-Objects.html Unfortunately, ImageMagick Pango "coder" is a pretty basic wrapper around Pango library. For any use of Pango that is beyond trivial, line spacing is essenti...