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


Python Wand fx()用法及代碼示例


FX特效是一種函數強大的“micro”語言。簡單的函數和運算符提供了一種獨特的方式來訪問和處理圖像數據。 fx()方法應用FX表達式,並生成一個新的Image實例。

我們可以創建一個自定義DIY濾鏡,該濾鏡會將圖像變為黑白,但色相高於324°或低於36°的顏色除外。

用法:
wand.image.fx(fx_string)

參數:

參數 輸入類型 描述
expression basestring 要應用的整個FX表達式。
channel CHANNELS 定位的可選渠道。

源圖像:



範例1:

# import IMage from wand.image module 
from wand.image import Image 
  
# expression string for fx() 
fx_filter ="(hue > 0.9 || hue < 0.1) ? u:lightness"
  
with Image(filename ="koala.jpeg") as img:
    with img.fx(fx_filter) as filtered_img:
       filtered_img.save(filename ="fx-koala.jpeg")

輸出:

範例2:

# import IMage from wand.image module 
from wand.image import Image 
  
# expression string for fx() 
fx_filter ="(luma > 0.9 || luma < 0.1) ? u:lightness"
  
with Image(filename ="koala.jpeg") as img:
    with img.fx(fx_filter) as filtered_img:
       filtered_img.save(filename ="fx-koala.jpeg")

輸出:

相關用法


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