0
我想在ImageMagick中使用運動模糊。 Motion blur in ImageMagick documentation.如何使用魔杖與ImageMagick進行運動模糊?
但是在魔杖中只有gaussian_blur。 Gaussian blur in Wand documentation.
魔杖中是否缺少運動模糊?
我想在ImageMagick中使用運動模糊。 Motion blur in ImageMagick documentation.如何使用魔杖與ImageMagick進行運動模糊?
但是在魔杖中只有gaussian_blur。 Gaussian blur in Wand documentation.
魔杖中是否缺少運動模糊?
魔杖中是否缺少運動模糊?
是,作爲0.4.3有上wand庫中實現無wand.image.Image.motion_blur
方法。
您需要將魔杖的API擴展爲包含MagickMotionBlurImage
。
import ctypes
from wand.image import Image
from wand.api import library
# Tell Python about the C method
library.MagickMotionBlurImage.argtypes = (ctypes.c_void_p, # wand
ctypes.c_double, # radius
ctypes.c_double, # sigma
ctypes.c_double) # angle
# Extend wand.image.Image class to include method signature (remember error handling)
class MyImage(Image):
def motion_blur(self, radius=0.0, sigma=0.0, angle=0.0):
library.MagickMotionBlurImage(self.wand,
radius,
sigma,
angle)
# Example usage
with MyImage(filename='rose:') as img:
img.motion_blur(radius=8.0, sigma=4.0, angle=-57.0)
img.save(filename='rose_motion.png')
這不是一個編程的問題。看起來像一個應用程序技術支持問題。 –
你可以在這裏尋求支持:https://www.imagemagick.org/discourse-server/viewforum.php?f=6 – dlemstra