blur
Applies a blur effect to an image. Blurring an image can be useful for various purposes, such as anonymizing sensitive information, creating a soft-focus effect, loader skeletons, etc.
blur(imageID: string, body: ImageBlurParams | null | undefined = {}, options?: RequestOptions): APIPromise<ImageObject>;
modulate
Adjusts the brightness, saturation, and hue of an image.
modulate(imageID: string, body: ImageModulateParams | null | undefined = {}, options?: RequestOptions): APIPromise<ImageObject>;
removeBackground
Removes the background from an image. Removing the background from an image can be useful for various purposes, such as creating a transparent background or isolating the subject of the image.
removeBackground(imageID: string, body: ImageRemoveBackgroundParams | null | undefined = {}, options?: RequestOptions): APIPromise<ImageObject>;