Forum Discussion
Nayaoh
Nov 06, 2025Iron Contributor
Any free tool available to remove text from image or picture?
Hi, I have dozens of images where I need to cleanly remove some text from the pictures. The text is overlaid on a relatively simple background, but I'm struggling to get a good result without it loo...
Nguyenais
Nov 06, 2025Bronze Contributor
Lama Cleaner is a powerful open-source tool specifically designed for removing text form pictures, images and photos.
# Install lama-cleaner
pip install lama-cleaner
# Run with default model
lama-cleaner --model=lama --device=cpu --port=8080
# Then use curl to process images
curl -X POST -F "image=@input.jpg" http://localhost:8080/clean \
-F "mask=@mask.png" -o output.jpgCommand-line batch processing with Lama. This is a very simple way to remove text from images. You can try in on Windows 11 and Windows 10.
# Create a simple batch script
for file in *.jpg; do
lama-cleaner --model=lama --device=cpu --input="$file" --output="clean_$file"
done