1

I need a image manipulator for laravel but with only a few features:

Delete text from image (White Brush (?) ) Add text with a specific font. Add other images in the image..

if is possible, a live view!

Any ideas of some package ?

Canopix
  • 19
  • 2
  • Possible duplicate of [Extract words from an Image and PDF - Laravel](http://stackoverflow.com/questions/33303389/extract-words-from-an-image-and-pdf-laravel) – AntoineB Sep 20 '16 at 14:21

1 Answers1

3

Check out most popular image manipulation package Intervention Image.

Intervention Image is an open source PHP image handling and manipulation library. It provides an easier and expressive way to create, edit, and compose images and supports currently the two most common image processing libraries GD Library and Imagick.

You can insert images into main image with insert() method, add custom text to image with text() method etc.

Alexey Mezenin
  • 158,981
  • 26
  • 290
  • 279