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


Python Pgmagick write()用法及代碼示例


write()函數是Pgmagick庫中的內置函數,用於寫入中間圖像。當前圖像被寫入指定的文件名,然後繼續使用該圖像進行處理。

用法:
write(filename)

參數:該函數接受上麵提到並在下麵定義的單個參數:

  • filename:此參數用於指定已處理圖像的名稱。

返回值:此函數返回Pgmagick對象。

範例1:

from pgmagick import Image, DrawableCircle, DrawableText 
from pgmagick import Geometry, Color 
  
# draw the image of dimension 600 * 600 
img = Image((600, 600), "gradient:# ffffff-# 12323e") 
  
# invoke write function along with filename 
img.write('1_a.png')

輸出:

範例2:

from pgmagick import Image, DrawableCircle, DrawableText 
from pgmagick import Geometry, Color 
# Draw image of dimension 600 * 600 having background green 
im = Image(Geometry(600, 600), Color("# 32CD32")) 
  
# invoke DrawableCircle() function 
circle = DrawableCircle(100, 100, 300, 20) 
  
# invoke draw() function 
im.draw(circle) 
  
# set font size to 40px 
im.fontPointsize(40) 
  
# invoke DrawableText() function 
text = DrawableText(250, 450, "GeeksForGeeks") 
  
# invoke draw() function 
im.draw(text) 
  
# invoke write function along with filename 
im.write('1_b.png')

輸出:

參考:




相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 Pgmagick write() method – Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。