Somebody
Somebody

Reputation: 9645

Imagemagick removing watermark

Is it possible to remove watermark placed with imagemagick library in past?

Thanks ;)

Update

I mean, I need to remove my logo from images. Can't find in official documentation, how to remove watermark from image.

Upvotes: 4

Views: 4927

Answers (2)

Legolas
Legolas

Reputation: 773

The logo can be removed easily using ffmpeg, by using its delogo filter. All you need to supply is the co-ordinates and dimensions of the logo present on the video.

This works on videos very swiftly, you can convert your image to a video and apply this filter, or even compile group of images to a video and later break it into frames to obtain clean images. All of this can be easily done using ffmpeg only. eg for the filter syntax: ffmpeg -i (your video url) -f "delogo=x=0:y=0:w=100:h=77:band=10" -r (output file url)

Find the complete documentation here.

Upvotes: 1

Screenack
Screenack

Reputation: 757

Yes, if you restore the original file directory from a backup. I'm presuming that you've rendered a single-layered file, where IM composited/overlayed the watermark on the image. There is no reliable and practical way to remove such a mark generally manually, let alone via batch process. Exceptions might include if the watermark always rendered over a flat color, etc.

Upvotes: 2

Related Questions