Picovert

How to Add a Watermark to Images Free: 5 Methods

By Picovert Team2026-02-265 min read

Watermarks let you claim ownership of your images before sharing them online. Whether you are a photographer protecting your portfolio, a business branding its content, or a stock creator previewing work before sale, this guide covers five free methods to add watermarks to any image.

Why add a watermark?

  • Copyright protection — discourages image theft and unauthorized use by visually attributing the work to you.
  • Brand recognition — photographers and creators embed their name or logo so every shared copy carries their identity.
  • Preview images — stock photographers watermark previews before the final licensed file is delivered.
  • Event photography — clients see proofs with a watermark before ordering high-resolution prints.

Keep in mind: watermarks deter casual copying but do not prevent it. A determined user can still remove them with editing software. The goal is to raise the cost of infringement, not eliminate it entirely.

Types of watermarks

  • Text watermark — your name, copyright symbol, or website URL (e.g., © YourName.com). Quick to apply in bulk.
  • Logo watermark — your business logo as a PNG with transparency, placed over the photo.
  • Opacity — semi-transparent (40–70%) for a subtle look; fully opaque for maximum visibility on preview images.
  • Position — corner placement is subtle and conventional; center placement is most protective but affects the viewing experience.

Method 1: Picovert Watermark Tool (online, free)

The fastest option with no software installation required. The Picovert watermark tool runs entirely in your browser — files are never sent to a server.

  1. Upload your photo to the watermark tool.
  2. Choose a text watermark (your name, URL, or copyright notice) or upload a logo PNG.
  3. Set the position, opacity, and size using the live preview.
  4. Click download to save the watermarked image.

Batch mode lets you drop multiple images at once and apply the same watermark to all of them in one click.

Method 2: Photoshop

Photoshop gives you the most control over watermark appearance:

  1. Open your photo in Photoshop.
  2. For a text watermark: select the Text tool, click on the image, and type your copyright text. Set the blending mode to Multiply or Screen depending on whether your photo background is light or dark.
  3. Adjust the layer opacity to 50–70% in the Layers panel.
  4. For a logo watermark: open your transparent PNG logo, drag it onto your photo as a new layer, then resize and position it.
  5. Export: File → Export → Export As → JPEG.

Pro tip: Record a Photoshop Action to automate watermarking across an entire folder of photos using File → Automate → Batch.

Method 3: GIMP (free alternative to Photoshop)

GIMP is a powerful free image editor available on Windows, macOS, and Linux.

  1. Open your image in GIMP.
  2. For a text watermark: select the Text tool from the toolbox, click on the image, and type your copyright text. In the Layers panel, lower the opacity of the text layer to 40–60%.
  3. For a logo watermark: go to File → Open as Layers and select your transparent PNG logo. It will appear as a new layer — resize and position it using the Scale and Move tools.
  4. Export the result: File → Export As → choose JPEG or PNG.

Method 4: ImageMagick (command line, batch)

ImageMagick is a free command-line tool ideal for batch watermarking entire folders.

Text watermark on a single image:

convert photo.jpg -gravity SouthEast -font Arial -pointsize 24 \
  -fill "rgba(255,255,255,0.5)" -annotate +10+10 "© YourName" output.jpg

Logo watermark with 50% opacity:

composite -gravity SouthEast -geometry +10+10 -dissolve 50 logo.png photo.jpg output.jpg

Batch watermark an entire folder:

for f in *.jpg; do
  composite -gravity SouthEast -geometry +10+10 -dissolve 50 logo.png "$f" "watermarked_$f"
done

Method 5: Mobile apps (iOS / Android)

  • iWatermark — popular app available on both iOS and Android with support for text and logo watermarks.
  • Adobe Lightroom Mobile (free tier) — add a text watermark through the Export settings. Consistent across your whole library.
  • Snapseed — no dedicated watermark feature, but you can use the Markup layer to hand-write or stamp text onto an image.

Best practices

  1. Use semi-transparent opacity — 40–70% lets viewers still appreciate the image while the watermark remains legible.
  2. Place in a corner with padding — bottom-right is the photography convention. Leave a small margin so it is not right at the edge.
  3. Make text large enough to read — tiny watermarks are easily cropped out. Aim for roughly 4–5% of the image width.
  4. Keep a consistent style — using the same position, font, and opacity across all your images reinforces your brand identity.
  5. Combine with EXIF copyright data — watermarking the visible image and embedding copyright in the file metadata provides double protection. Use the image resizer after watermarking if you need to adjust dimensions for upload.