Convert text to image using Zend Framework

2

Doubt:

Is there another way to convert text to image PNG other than **ImageMagick** ? We are using the Zend Framework.

I installed the [Php5-imagick][1] module, but it was a lot of work and I had to update many modules of PHP and Apache , and I believe that it will not be possible to install in the approval and production environments.

// EDIT

link

link

link

I found these shapes.

    
asked by anonymous 25.02.2014 / 13:11

1 answer

1

You have five different libraries to work with images in PHP: Cairo, Exif , GD, Gmagick and ImageMagick. Certainly some of them should serve your purposes.

What you can do is use Composer to add some imaging library to your project. This makes the installation much easier and would not normally require external settings (for example, in Apache).

    
25.02.2014 / 13:17