Forum Discussion
How do I remove watermarks from photos free in Windows 11?
Another powerful command-line tool you can use to remove watermarks from photos on a PC is GraphicsMagiick. It's a robust and efficient image processing system, often considered a fork of Magiick, optimized for performance and stability.
1. Visit the official download page. Choose the appropriate installer for your operating system and follow the installation instructions.
2. During installation, ensure that the option to add it to your system’s PATH is selected for easy command-line access.
3. Determine the location and size of the watermark on your image. You can use any image viewer or editor to note down the coordinates (x, y) and dimensions (width, height) of the watermark area.
4. If the watermark is located at a specific corner or edge of the image, you can crop that portion out.
gm convert in.jpg -gravity southeast -chop 100x50+0+0 out.jpg
Explanation:
- -gravity southeast: Sets the reference point to the bottom-right corner.
- -chop 100x50+0+0: Removes a region 100 pixels wide and 50 pixels tall from the specified gravity position.
- in.jpg: Your original image.
- out.jpg: The resulting image without the watermark.
- Adjust the 100x50 dimensions based on your watermark size.
This is a very simple way to let you remove watermarks from photo on Windows, Linux and macOS.