interline spacing, interword spacing, kerning

Magick++ is an object-oriented C++ interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick++.
Post Reply
tsftd
Posts: 28
Joined: 2012-01-14T11:46:55-07:00
Authentication code: 8675308

interline spacing, interword spacing, kerning

Post by tsftd »

ImageMagick has the three text-related parameters: "interline spacing," "interword spacing," and "kerning." These allow fine-grained control over the outputted text. However, I can't seem to find the related options in the Magick++ API. Do they exist, and if so, what are they called? If not, how were they implemented in ImageMagick?
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: interline spacing, interword spacing, kerning

Post by dlemstra »

This is not yet available in Magick++. I will add the Drawable classes and add the properties to the Image and Options classes.
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
tsftd
Posts: 28
Joined: 2012-01-14T11:46:55-07:00
Authentication code: 8675308

Re: interline spacing, interword spacing, kerning

Post by tsftd »

much thanks!!
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: interline spacing, interword spacing, kerning

Post by dlemstra »

The following classes have been added: DrawableTextInterlineSpacing, DrawableTextInterwordSpacing, DrawableTextKerning. And the following methods have been added to the Image class: textInterlineSpacing, textInterwordSpacing, textKerning. These changes will be available in ImageMagick 6.8.8-2.
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
Post Reply