AutoimgRenamer is a Python tool to rename image files in a folder with a specified base name and incremental index.
You can install AutoimgRenamer from PyPI:
pip install autoimgrenamerfrom autoimgrenamer import autoimgrenamer
directory_path = "/path/to/your/images"
new_img_name = 'base'
autoimgrenamer(directory_path, new_img_name)This will rename all supported image files in the directory using the base name (base_0000.PNG, base_0001.PNG, etc.).
Supported Image Formats: JPG, JPEG, PNG, GIF, BMP, WebP