Thursday, July 4, 2024
HomeLanguagesPythonPython PIL | ImageDraw.Draw.pieslice()

Python PIL | ImageDraw.Draw.pieslice()

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.pieslice() Same as arc, but also draws straight lines between the end points and the center of the bounding box.

Syntax: PIL.ImageDraw.Draw.pieslice(xy, start, end, fill=None, outline=None)

Parameters:
xy – Four points to define the bounding box. Sequence of [(x0, y0), (x1, y1)] or [x0, y0, x1, y1].
start – Starting angle, in degrees. Angles are measured from 3 o’clock, increasing clockwise.
end – Ending angle, in degrees.
fill – Color to use for the fill.
outline – Color to use for the outline.

Returns: An Image object in pieslice shape.




   
  
# importing image object from PIL
import math
from PIL import Image, ImageDraw
   
w, h = 220, 190
shape = [(40, 40), (w - 10, h - 10)]
   
# creating new Image object
img = Image.new("RGB", (w, h))
   
# create pieslice image
img1 = ImageDraw.Draw(img)  
img1.pieslice(shape, start = 50, end = 250, fill ="# ffff33", outline ="red")
img.show()


Output:

Another Example: Here we use different colour for filling.




   
# importing image object from PIL
import math
from PIL import Image, ImageDraw
   
w, h = 220, 190
shape = [(40, 40), (w - 10, h - 10)]
   
# creating new Image object
img = Image.new("RGB", (w, h))
   
# create pieslice image
img1 = ImageDraw.Draw(img)  
img1.pieslice(shape, start = 50, end = 250, fill ="# 800080", outline ="white")
img.show()


Output:

Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments