Problem with curve text

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?".
Post Reply
vipula
Posts: 2
Joined: 2012-10-25T07:44:54-07:00
Authentication code: 67789

Problem with curve text

Post by vipula »

Hi there,

I am new to this site, Don't know where to post my question. If I am at wrong place, please move it right one.

I have image http://ramsign.dk.web15.redhost.dk/inde ... ned&targ=3

and here is bg image Image

Now I am using http://ramsign.dk.web15.redhost.dk/BDBCNC__.ttf this font.

My command line is

convert components/com_reddesign/assets/images/designtype/1350025154_NT_21x34m_S.jpeg \ \( -gravity North -font components/com_reddesign/assets/fonts/BDBCNC__.ttf -pointsize 120 -fill '#ffffff' -background none label:'Tpj grefield'\''s' \ transparent -distort Arc '68'\ \) -geometry +0+0 -composite \ components/com_reddesign/assets/order/design/reddesign1350999816.jpeg

This command has been used to write 1st line on image. I have used few other font types which works fine.

But this font has issue when font is enter into descent.

here is example, I am trying to achieve

Image
vipula
Posts: 2
Joined: 2012-10-25T07:44:54-07:00
Authentication code: 67789

Re: Problem with curve text

Post by vipula »

Can anyone help me please?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Problem with curve text

Post by fmw42 »

convert components/com_reddesign/assets/images/designtype/1350025154_NT_21x34m_S.jpeg \ \( -gravity North -font components/com_reddesign/assets/fonts/BDBCNC__.ttf -pointsize 120 -fill '#ffffff' -background none label:'Tpj grefield'\''s' \ transparent -distort Arc '68'\ \) -geometry +0+0 -composite \ components/com_reddesign/assets/order/design/reddesign1350999816.jpeg
try adding -virtual-pixel transparent rather than just transparent

convert components/com_reddesign/assets/images/designtype/1350025154_NT_21x34m_S.jpeg \ \( -gravity North -font components/com_reddesign/assets/fonts/BDBCNC__.ttf -pointsize 120 -fill '#ffffff' -background none label:'Tpj grefield'\''s' \ -virtual-pixel transparent -distort Arc '68'\ \) -geometry +0+0 -composite \ components/com_reddesign/assets/order/design/reddesign1350999816.jpeg
Post Reply