如何通过 Python Wand 接口访问不受支持的 Wand API?例如,我希望调用 Wand API MagickAddNoiseImage
,但它在 Python 接口中不可用。
问问题
109 次
1 回答
1
使用wand.api访问不受支持的 API 非常简单,但您需要打开 ImageMagick 的 docs/header 文件以供参考。
from wand.api import library
import ctypes
# Re-create NoiseType enum
NOISE_TYPES = ('undefined', 'uniform', 'gaussian', 'multiplicative_gaussian',
'impulse', 'laplacian', 'poisson', 'random')
# Map API i/o
library.MagickAddNoiseImage.argtypes = [ctypes.c_void_p,
ctypes.c_uint]
library.MagickAddNoiseImage.restype = ctypes.c_int
# Extend wand's Image class with your new API
from wand.image import Image
class MySupportedImage(Image):
def add_noise(self, noise_type):
"""My MagickAddNoiseImage"""
if noise_type not in NOISE_TYPES:
self.raise_exception()
return library.MagickAddNoiseImage.argtypes(self.resource,
NOISE_TYPES.index(noise_type))
如果您的解决方案成功,请考虑将您的解决方案提交回社区(在您创建可靠的单元测试之后。)
于 2015-01-17T13:42:17.887 回答