Open In App

Python PIL |ImageDraw.Draw.multiline_text()


PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The ImageDraw module provide simple 2D graphics for Image objects. You can use this module to create new images, annotate or retouch existing images, and to generate graphics on the fly for web use.

ImageDraw.Draw.multiline_text() Draws the string at the given position.



Syntax:
ImageDraw.Draw.multiline_text(xy, text, fill=None, font=None, anchor=None, spacing=0, align=”left”)

Parameters:



xy – Top left corner of the text.
text – Text to be drawn.
fill – Color to use for the text.
font – An ImageFont instance.
spacing – The number of pixels between lines.
align – If the text is passed on to multiline_text(), “left”, “center” or “right”.

Return Type:
returns an image with text.

Image Used:

Code : Example of ImageDraw.Draw.multiline_text()




   
# Importing Image and ImageFont, ImageDraw module from PIL package 
from PIL import Image, ImageFont, ImageDraw 
      
# creating a image object 
image = Image.open(r'C:\Users\System-Pc\Desktop\ROSE.jpg'
  
draw = ImageDraw.Draw(image) 
  
# specified font size
font = ImageFont.truetype(r'C:\Users\System-Pc\Desktop\arial.ttf', 15
spacing = 50
text = u"""\
ALWAYS BE HAPPY
(LAUGHING IS THE \n BEST MEDICINE)"""
  
# drawing text size
draw.text((6, 8), text, fill ="red", font = font, 
          spacing = spacing, align ="right"
  
image.show() 

Output:

Another Example:Here we changing parameter.

Image Used:

Code : Example of ImageDraw.Draw.multiline_text()




   
  
# Importing Image and ImageFont, ImageDraw module from PIL package 
from PIL import Image, ImageFont, ImageDraw 
      
# creating a image object 
image = Image.open(r'C:\Users\System-Pc\Desktop\flower.jpg'
  
draw = ImageDraw.Draw(image) 
  
# specified font size
font = ImageFont.truetype(r'C:\Users\System-Pc\Desktop\arial.ttf', 15
spacing = 50
text = u"""\
ALWAYS BE HAPPY
(LAUGHING IS THE \n BEST MEDICINE)"""
  
# drawing text size
draw.text((6, 8), text, fill ="black"
          font = font, spacing = spacing, align ="right"
  
image.show() 

Output:


Article Tags :