point() es otra función de dibujo y la más simple de todas. La función point() básicamente dibuja un punto en un punto particular de una imagen. Simplemente toma dos argumentos x, y para la coordenada del punto.
Sintaxis:
wand.drawing.point(x, y)Parámetros:
Parámetro Tipo de entrada Descripción X numeros.reales coordenada x del punto y numeros.reales y coordenada del punto
Ejemplo 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")
Producción:
Ejemplo #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")
Producción:
Publicación traducida automáticamente
Artículo escrito por RahulSabharwal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA