使用matplotlib库(Python)
```python
import matplotlib.pyplot as plt
设置直线的起点和终点坐标
x = [1, 2]
y = [3, 4]
绘制直线
plt.plot(x, y)
显示图形
plt.show()
```
使用turtle库(Python)
```python
import turtle
创建一个turtle对象
t = turtle.Turtle()
绘制直线
t.forward(100)
关闭绘图窗口
turtle.done()
```
使用OpenCV库(Python)
```python
import cv2
创建一个黑色图像
img = np.zeros((500, 500, 3), dtype=np.uint8)
绘制一条直线
cv2.line(img, (50, 50), (450, 450), (0, 255, 0), 2)
显示图像
cv2.imshow('Line', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
使用canvas(HTML/JavaScript)
```html