Forum Discussion

Dvoraky's avatar
Dvoraky
Iron Contributor
Jan 17, 2025

How do I remove watermarks from photos free in Windows 11?

Hi all,

My computer was crashed and all the original images for my own websites are gone. Fortunately, I have most of them uploaded to the website, a blog powered by WordPress. The problem is that all the images are watermarked with my website name and it is done automatically by a WordPress plugin when the photo is uploaded.

I'm curious about what method you would recommend to remove watermarks from photo on Windows 11 PC . Are there software programs that are particularly effective, or any online services you've had good experiences with?

Thank you

7 Replies

  • ClaireCC's avatar
    ClaireCC
    Copper Contributor

    I use anyrecc free online watermark remover to remove text and logos from images in all shapes for months. Completely free to use now. The image looks as clear as before. 

  • ventura's avatar
    ventura
    Copper Contributor

    Removing watermarks from photos for free on Windows 11 can be done using tools like Microsoft Paint, G IMP, or online editors like Photopea.

  • UtahMountain's avatar
    UtahMountain
    Iron Contributor

    Removing watermarks from photos can be a tedious task, but don't worry, I've got you covered. Here are some methods to remove watermarks from photos on Windows 11:

    1. Adobe Photoshop Express
    Adobe Photoshop Express is a free photo editing software that offers a "Remove Watermark" tool. While it's not perfect, it can help you remove simple watermarks.

    • Download and install Adobe Photoshop Express from the Microsoft Store.
    • Open the app and select the photo with the watermark.
    • Go to Tools > Edit > Remove Watermark.
    • Adjust the settings and click Apply.

     

    2. Canva 
    Canva is a popular online graphic design platform that also offers a photo editing tool. You can use the "Remove Watermark" feature to remove simple watermarks.

    • Go to Canva.com and log in or create an account.
    • Select the photo with the watermark and click Upload.
    • Click on Edit and select Remove Watermark from the toolbar.

     

    3. Manual Editing
    If you don't want to use software or online tools, you can try manual editing to remove the watermark. This method requires patience and attention to detail.

    • Open the photo in Windows Photos or a similar app.
    • Use the Crop tool to select the area around the watermark and remove it.
    • Use the Healing Brush or Clone Brush tools to retouch the area.
    • Remember that manual editing may not produce perfect results, especially if the watermark is complex or large.
  • Garciab's avatar
    Garciab
    Iron Contributor

    Using GraphicsMagick to remove watermarks from photo can seem like a handy solution. When you chop out a watermark, you’re essentially cutting that part of the image. If the watermark covers a significant portion of the photo, you might end up with a weirdly cropped image that doesn’t look great. Sometimes it can leave an awkward gap that just looks off.

    Now, if you’re really looking to remove watermarks and want something a bit more user-friendly, Windows 11 offers some built-in tools that could make the process easier without diving into command lines:

    • Paint: You can use Microsoft Paint to manually remove the watermark. It’s not a perfect solution, but you can use the selection tool to cut out the watermark and fill in the background.
    • Photos App: Windows 11’s Photos app allows basic editing. You can crop images, adjust them, and it’s much easier to navigate than the command line.
    • PowerPoint: You could even import your image into Microsoft PowerPoint, overlay a shape to cover the watermark, and then export it as an image again. It might be a bit unconventional, but hey, it works!

     

    While GraphicsMagick is powerful, it may not be the best tool for everyone, especially if you're new to image editing or want a simple, hassle-free experience. Leveraging the built-in tools on Windows 11 can help you more comfortably navigate the image-editing process. Just make sure to respect copyright!

  • Bobomm's avatar
    Bobomm
    Bronze Contributor

    Don’t just grab any random software off the internet. Go for something reliable! There are tools like Paint 3D, which comes with Windows 11, where you can clone or cut parts of the image. Just don’t expect miracles if the watermark is hardcore! If you're just remove watermark from photo, it might leave the area looking patchy or weird. You might wanna blend or buffer the surrounding area. Using the Clone Stamp Tool in something like G1MP or Photopea (a free online editor) can be a game changer here.

    • Using Snip & Sketch: If it’s just a small watermark and not a huge area, you can snip over it with another part of the image using the Snip tool or the built-in screenshot feature on Windows (Windows + Shift + S). It’s not perfect, but it can work for minor issues.
    • Paint 3D: Open your image, use the select tool, outline the watermark, and hit delete. Then, use the brush tools to blend it back together. It’s basic, but it works for non-complex backgrounds.
  • Josew's avatar
    Josew
    Iron Contributor

    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.

  • RMcneill's avatar
    RMcneill
    Iron Contributor

    This can be done with a free command line tool LmageMagick, a powerful open-source tool for image manipulation. Here is how to use it to remove watermark from photos on Windows 11:

    Use any image editing tool to identify the coordinates of the watermark, or if the watermark is in a fixed location (like the bottom-right corner), you can define that area explicitly in the command.

    Use the built-in convert or magiick command to remove the watermark from photos. You can achieve this by cropping out the watermark or blending it with surrounding pixels. If the watermark is in a fixed position and you know its coordinates, use the following command:

    magiick input.jpg -crop 0x0+0+0 output.jpg

    This command will crop the image by removing a specified section from the edges, with +0+0 specifying the starting point of the crop area.

    It also supports inpainting (filling in areas based on surrounding pixels). For this, you'll need to create a mask for the watermark area. Create a black-and-white mask where the watermark area is white, and the rest of the image is black.

    magiick input.jpg -region 100x100+200+200 -clamp -fill none -fuzz 30% -draw "color 0,0 floodfill" output.jpg

    This example fills the watermark area with a color or a pattern based on the surrounding image, effectively removing the watermark.

Resources