📜  Python PIL | ImagePath.Path.tolist() 方法

📅  最后修改于: 2022-05-13 01:54:50.333000             🧑  作者: Mango

Python PIL | ImagePath.Path.tolist() 方法

PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 ImagePath模块用于存储和操作二维矢量数据。路径对象可以传递给ImageDraw模块上的方法。

ImagePath.Path.tolist()将路径转换为Python列表 [(x, y), ...]。

# from PIL importing ImagePath
from PIL import ImagePath
  
# creating a list to map
getbox = list(zip(range(3, 41, 1), range(11, 22, 2)))
result = ImagePath.Path(getbox)
  
# using tolist function
a = result.tolist()
print(getbox)
print(a)

输出:

另一个例子:改变参数。

# from PIL importing ImagePath
from PIL import ImagePath
  
# creating a list to map
getbox = list(zip(range(5, 51, 16), range(15, 22, 4)))
result = ImagePath.Path(getbox)
  
# using tolist function
a = result.tolist()
print(getbox)
print(a)

输出: