Add Text on Image using PIL
Clash Royale CLAN TAG #URR8PPP Add Text on Image using PIL I have an application that loads an Image and when the user clicks it, a text area appears for this Image (using jquery ), where user can write some text on the Image. Which should be added on Image. jquery After doing some research on it, I figured that PIL (Python Imaging Library ) can help me do this. So I tried couple of examples to see how it works and I managed to write text on an image. But I think there is some difference when I try it using Python Shell and in web environment. I mean the text on the textarea is very big in px. How can I achieve the same size of text when using PIL as the one on the textarea? PIL Python Shell The text is Multiline. How can i make it multiline in image also, using PIL ? PIL Is there a better way than using PIL? I am not entirely sure, If this is the best implementation. html: <img src="images/test.jpg"/> its the image being edited var count = 0; $('textarea').a...