[Rails] Re: RMagick Image text question

2015-11-01 Thread James Derryl
You can use this article on Image Manipulation to clear your query. This article may prove to be of your help. http://www.railscarma.com/blog/technical-articles/image-manipulation/ -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google

[Rails] Re: RMagick Image text question

2008-10-30 Thread Zhoran Tvalve
Good luck, Jim ;) Attachments: http://www.ruby-forum.com/attachment/2874/2.png -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this

[Rails] Re: RMagick Image text question

2008-10-30 Thread Zhoran Tvalve
Zhoran Tvalve wrote: Hi, Jim! It really works!! I just turned off antialiasing and got it!!! Please take a look at the pictures. That is what I needed. Thank you for your help! One note more. I've checked again and found that result defends on both callings

[Rails] Re: RMagick Image text question

2008-10-30 Thread Jim
hmm...I never noticed the text_antialias method before. I'll have to remember that the next time I run into issues. Glad I could help! Jim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk

[Rails] Re: RMagick Image text question

2008-10-29 Thread Zhan Tuaev
Zhan Tuaev wrote: Hi there! I'm studying RMagick graphics manipulation gem, and I need to put small text about size 8 to 11 px on pictures. I found that text() method prints quite blurred text. And I could not get clear text chosing different values for methods font, font_family, font_style,

[Rails] Re: RMagick Image text question

2008-10-29 Thread Jim
In my text drawing, I set stroke to transparent and fill to the desired text color. Also, you could try turning off antialiasing. I ended up using anti-aliasing, but rendering the text at double size and scaling down for acceptable results.

[Rails] Re: RMagick Image text question

2008-10-29 Thread Zhoran Tvalve
Jim wrote: In my text drawing, I set stroke to transparent and fill to the desired text color. Also, you could try turning off antialiasing. I ended up using anti-aliasing, but rendering the text at double size and scaling down for acceptable results. Hi, Jim! how can I turn off

[Rails] Re: RMagick Image text question

2008-10-29 Thread Zhoran Tvalve
I tried to call / not to call methods fill() and stroke(). result is different in all cases: gc.fill('black') #results in: #gc.fill('black') # call is commented out gc.stroke('black') # results in: Attachments: http://www.ruby-forum.com/attachment/2864/stroke_only.png -- Posted via

[Rails] Re: RMagick Image text question

2008-10-29 Thread Zhoran Tvalve
Zhoran Tvalve wrote: I tried to call / not to call methods fill() and stroke(). result is different in all cases: gc.fill('black') #results in: #gc.fill('black') # call is commented out gc.stroke('black') # results in: gc.fill('black') gc.stroke('black') # calling both results in:

[Rails] Re: RMagick Image text question

2008-10-29 Thread Zhoran Tvalve
Zhoran Tvalve wrote: Zhoran Tvalve wrote: I tried to call / not to call methods fill() and stroke(). result is different in all cases: gc.fill('black') #results in: #gc.fill('black') # call is commented out gc.stroke('black') # results in: gc.fill('black') gc.stroke('black') #