Open In App

Wand point() function in Python

Last Updated : 01 Jun, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

point() is another drawing function and simplest of all. point() function basically draw a point on a particular point on an image. It simply takes two x, y arguments for the point coordinate.
 

Syntax : 
 

wand.drawing.point(x, y)


Parameters:
 

ParameterInput TypeDescription
xnumbers.Realx coordinate of point
ynumbers.Realy coordinate of point


Example #1: 
 

Python3
# Import different modules of wand
from wand.image import Image
from wand.drawing import Drawing
from wand.color import Color

# object for Drawing
with Drawing() as draw:
    x = 100
    y = 100
    # draw point at (100, 100) using point() function
    draw.point(x, y)

    with Image(width = 200, height = 200, 
               background = Color('lightgreen')) as image:

        draw(image)
        image.save(filename ="point.png")

Output: 
 


Example #2: 
 

Python3
# Import different modules of wand
from wand.image import Image
from wand.drawing import Drawing
from wand.color import Color
import math

with Drawing() as draw:
    for x in xrange(0, 200):
        y = math.tan(x) * 4
        # draw points at different locations using point() function
        draw.point(x, y + 50)
    with Image(width = 200, height = 200, background = Color('lightgreen')) as image:
        draw(image)
        image.save(filename = "points.png")

Output: 
 


 


Next Article
Article Tags :
Practice Tags :

Similar Reads