3

On my site I'm using simple text overlay. Inputs come from textboxes and then javascript makes an AJAX call with the inputs that are then processed in the backend by PIL (Python Imaging Library).

Thing is, I'm not happy about the quality of PIL's text overlays - it's not possible to do a nice looking stroke (e.g. white font color + black stroke) and I'm thinking about switching to a different solution than PIL. I want to stay with Python though.

What would you recommend for image processing in Python? Which library offers the best quality?

Thanks!

Best, Tom

teeZee
  • 827
  • 1
  • 8
  • 7

1 Answers1

1

If all you want to do is overlay text, I suggest you simply use imagemagick.

Emre
  • 4,545
  • 7
  • 25
  • 39