Generating pictures with AI technology has become a trend, however, most AI-generated pictures embed watermarks in the corner of the picture, whether as text or a brand logo.
When sharing content with friends, we often want to remove these annoying unrelated things. In this article, we will show you how to do it totally at no cost.
To remove a watermark from a picture, we can use FFmpeg, a popular multimedia processing software. FFmpeg is a free command-line program used in most applications that handle multimedia, you can download the program from its official website.
After setting up the program on your computer, you can remove the watermark with this command:
ffmpeg -i picture.jpeg -vf "delogo=x=20:y=20:w=100:h=40" output.jpeg
x and y are the top left corner of the watermark while w and h are the width and height of the watermark respectively, just substitute them with the corresponding values of the actual watermark.
For most people, identifying the position of the watermark precisely is not easy, so we provide you with a tiny tool to get the precise position of the watermark and generate the final command for you to use directly. You can visit it here and use it for free.
