views:

53

answers:

3

i know there is a convert -swirl effect in imagemagick but can i create other effects for text like curved, arched, wedged, pinched etc.. just like wordart in word.

i am open to other packages that might help me get this thing done.. php or ruby..

+4  A: 

Here are some examples: http://www.fmwconcepts.com/imagemagick/texteffect/index.php
If you are interested, you can run this shell script through php exec() function or any other language which provide you with such an ability.

Sepehr Lajevardi
A: 

Check out RMagick, which is a Ruby interface to the ImageMagick library.

There are interfaces for many other languages as well, including PHP. Look here for an overview.

Lars Haugseth
A: 

As Lars suggested, RMagick is a good choice for doing it in RoR. If you're looking in PHP, I'm not sure that it can do some of the things you're wanting to, but GD2 (which is usually natively included with PHP if you installed PHP with a package manager) is a good tool. There is also a PHP extension for ImageMagick.

Collin Klopfenstein