These scripts can change format of images from PNG to JPG and JPG to PNG
Required Modules
to install:
$ pip install -r requirements.txt
- Dynamic Change
Copy the script convertDynamic.py into the directory where images are (PNG and/or JPG). And run:
$ python convertDynamic.py
This will convert all JPG images to PNG and PNG images to JPG in present directory tree recursively(.i.e. will change format in images inside sub-directories too.)
- JPG to PNG (single image)
- Copy the JPG image in directory where JPGtoPNG.py exists
- Replace file name naruto_first.jpg inside JPGtoPNG.py(line 3) to input file name(JPG).
- Replace file name naruto.png inside JPGtoPNG.py(line 4) to output file name(PNG).
- Run following command:
$ python JPGtoPNG.py
- PNG to JPG (single image)
- Copy the PNG image in directory where PNGtoJPG.py exists
- Replace file name naruto_first.png inside PNGtoJPG.py(line 3) to input file name(PNG).
- Replace file name naruto.jpg inside PNGtoJPG.py(line 4) to output file name(JPG).
- Run following command:
$ python PNGtoJPG.py
Xordux