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")
輸出:
相關用法
- Python Wand function()用法及代碼示例
- Python Wand gaussian_blur()用法及代碼示例
- Python Wand transform()用法及代碼示例
- Python Wand crop()用法及代碼示例
- Python Wand rotational_blur()用法及代碼示例
- Python Wand Image()用法及代碼示例
- Python Wand shade()用法及代碼示例
- Python Wand sharpen()用法及代碼示例
- Python Wand adaptive_sharpen()用法及代碼示例
- Python Wand noise()用法及代碼示例
- Python Wand blue_shift()用法及代碼示例
- Python Wand color_matrix()用法及代碼示例
- Python Wand unsharp_mask()用法及代碼示例
- Python Wand colorize()用法及代碼示例
- Python Wand implode()用法及代碼示例
注:本文由純淨天空篩選整理自RahulSabharwal大神的英文原創作品 Wand fx() function – Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。