here's what I got:
draw.line([(x1,y1),(x2,y2)],fill = (255, 255, 255))
the result is a white line, but I want a transparent one, what should I do?
here's what I got:
draw.line([(x1,y1),(x2,y2)],fill = (255, 255, 255))
the result is a white line, but I want a transparent one, what should I do?
The line function takes either an RGB or an RGBA value to my knowledge.
Try:
draw.line([(x1,y1),(x2,y2)],fill = (255, 255, 255, 0))