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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。