Friday, November 21, 2025
HomeLanguagesWand path_horizontal_line() function in Python

Wand path_horizontal_line() function in Python

The path_horizontal_line() is another function for path. path_horizontal_line() function generates a horizontal line from a destination point to a particular x point. It takes only x in arguments as a point upto which line is being drawn.

Syntax: wand.drawing.path_horizontal_line(to, relative)

Parameters:

Parameter Input Type Description
x Real x-axis point to draw to.
relative bool treat given coordinates as relative to current point.

Example #1:




from wand.image import Image
from wand.drawing import Drawing
from wand.color import Color
   
with Drawing() as draw:
    draw.stroke_width = 2
    draw.stroke_color = Color('black')
    draw.fill_color = Color('white')
    draw.path_start()
      
    # Start middle-left
    draw.path_move(to=(10, 50))
      
    # horizontal line to x=100
    draw.path_horizontal_line(100)
    draw.path_finish()
    with Image(width=200,
               height=200,
               background=Color('lightgreen')) as image:
          
        draw(image)
        image.save(filename="pathhline.png")


Output:

Example #2:




from wand.image import Image
from wand.drawing import Drawing
from wand.color import Color
   
with Drawing() as draw:
    draw.stroke_width = 2
    draw.stroke_color = Color('black')
    draw.fill_color = Color('white')
    draw.path_start()
      
    # Start middle-left
    draw.path_move(to=(100, 50))
      
    # horizontal line to x=50
    draw.path_horizontal_line(50)
    draw.path_finish()
    with Image(width=200, 
               height=200,
               background=Color('lightgreen')) as image:
          
        draw(image)
        image.save(filename="pathhline.png")


Output:

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11996 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS