当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PIL ImagePath.Path.tolist()用法及代码示例


PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。 ImagePath模块用于存储和处理二维矢量数据。路径对象可以传递给ImageDraw模块。

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

用法:  PIL.ImagePath.Path.tolist(flat=0)

参数:

flat-默认情况下,此函数返回2元组[(x,y),…]的列表。如果此参数为True,则返回平面列表[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)

输出:

[(3, 11), (4, 13), (5, 15), (6, 17), (7, 19), (8, 21)]
[(3.0, 11.0), (4.0, 13.0), (5.0, 15.0), (6.0, 17.0), (7.0, 19.0), (8.0, 21.0)]

另一个示例:更改参数。

   
  
# 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)

输出:

[(5, 15), (21, 19)]
[(5.0, 15.0), (21.0, 19.0)]



相关用法


注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | ImagePath.Path.tolist() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。