PIL vs RMagick/ruby-gd - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T15:29:12Z http://stackoverflow.com/feeds/question/439641 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/439641/pil-vs-rmagick-ruby-gd 2 PIL vs RMagick/ruby-gd Vince 2009-01-13T16:21:17Z 2009-01-14T02:10:09Z <p>Hi,</p> <p>For my next project I plan to create images with text and graphics. I'm comfortable with ruby, but interested in learning python. I figured this may be a good time because PIL looks like a great library to use. However, I don't know how it compares to what ruby has to offer (e.g. RMagick and ruby-gd). From what I can gather PIL had better documentation (does ruby-gd even have a homepage?) and more features. Just wanted to hear a few opinions to help me decide.</p> <p>Thanks.</p> <p>Vince</p> http://stackoverflow.com/questions/439641/pil-vs-rmagick-ruby-gd/440298#440298 5 Answer by Soviut for PIL vs RMagick/ruby-gd Soviut 2009-01-13T19:00:38Z 2009-01-14T02:10:09Z <p>PIL is a good library, use it. ImageMagic (what RMagick wraps) is a very heavy library that should be avoided if possible. Its good for doing local processing of images, say, a batch photo editor, but way too processor inefficient for common image manipulation tasks for web.</p> <p><strong>EDIT:</strong> In response to the question, PIL supports drawing vector shapes. It can draw polygons, curves, lines, fills and text. I've used it in a project to produce rounded alpha corners to PNG images on the fly over the web. It essentially has most of the drawing features of GDI+ (in Windows) or GTK (in Gnome on Linux).</p> http://stackoverflow.com/questions/439641/pil-vs-rmagick-ruby-gd/440342#440342 3 Answer by Jeff Bauer for PIL vs RMagick/ruby-gd Jeff Bauer 2009-01-13T19:12:00Z 2009-01-13T19:12:00Z <p>PIL has been around for a long time and is very stable, so it's probably a good candidate for your first Python project. The PIL documentation includes a helpful <a href="http://www.pythonware.com/library/pil/handbook/introduction.htm" rel="nofollow">tutorial</a>, which should get you up to speed quickly.</p> http://stackoverflow.com/questions/439641/pil-vs-rmagick-ruby-gd/441260#441260 2 Answer by ozone for PIL vs RMagick/ruby-gd ozone 2009-01-13T23:12:10Z 2009-01-13T23:12:10Z <p>ImageMagic is a huge library and will do everything under the sun, but many report memory issues with the RMagick variant and I have personally found it to be an overkill for my needs.</p> <p>As you say ruby-gd is a little thin on the ground when it comes to English documentation.... but GD is a doddle to install on post platforms and there is a little wrapper with some helpful examples called <a href="http://gruby.sourceforge.jp/index.en.html" rel="nofollow">gruby</a> thats worth a look. (If you're after alpha transparency make sure you install the latest GD lib)</p> <p>For overall community blogy help, PIL's the way.</p>