Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 15, 2022 06:50 pm GMT

Free watermarks in your photos?

Hi there,
I was picturing Airsoft game and since I'm in a Airsoft team I wanted to add some free ad of our tiny sweet team.
I was browsing for totally free website tool to add some watermarks on these pictures. But none of them were actually free. Some of them allow only 10 per task and while I've got 650+ pictures it's kind useless. Or some of them can do every picture by once, but on the end the asked me for money to download it.
So, I texted to my dear friend @meldiron and he found a solution to my little problem called ImageMagick.

By owners of CLI

"ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under a derived Apache 2.0 license."

Final solution

I've downloaded ImageMagick CLI and just type command to loop all sub files in folder and add watermark by command

for /f %a IN ('dir /b /s "C:\Users\<user>\Desktop\foto\*.jpg"') do magick composite -gravity SouthWest F:\Graphics\THO\flag_www.png %a %a

I hope this might help some nerds here.
Love,
NiX3r

PS: some example of two watermarks in one picture
Image description


Original Link: https://dev.to/nix3r/free-watermarks-in-your-photos-e94

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To