當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。