Switch to full style
Ask all general Gimp related questions here
Post a reply

Circular Motion Blur

Wed Apr 14, 2021 8:50 am

GIMP Version: 2.10.22
Operating System: Mac OS
OS Version: 11.2.3
GIMP Experience: Intermediate Level



Hi,
I need to process images with "Circular Motion Blur" but I can't find it's procedure name. Is it possible ?

Thanks

Re: Circular Motion Blur

Wed Apr 14, 2021 10:22 am

There is a "Search and Run a Command" option under the HELP menu. You can also just use the forward slash: / to open the search window.

Re: Circular Motion Blur

Wed Apr 14, 2021 10:48 am

If you are creating scheme code
Code:
#In Type of motion blur you can choose { LINEAR (0), RADIAL (1), ZOOM (2) } or from 0 to 2
(plug-in-mblur run-mode image drawable type length angle center-x center-y)


If you are creating a python code
Code:
pdb.plug_in_mblur(image, drawable, type, length, angle, center_x, center_y)
Post a reply