From 55f0add711b17305c3b71fe2c990b8237e78bd5c Mon Sep 17 00:00:00 2001
From: jothivarshini <jothivarshini.s2020@vitstudent.ac.in>
Date: Wed, 5 Jan 2022 09:47:50 +0530
Subject: [PATCH 1/2] Added ImageTypeConverter

---
 ImageTypeconverter/imagetypeconverter.py | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 ImageTypeconverter/imagetypeconverter.py

diff --git a/ImageTypeconverter/imagetypeconverter.py b/ImageTypeconverter/imagetypeconverter.py
new file mode 100644
index 0000000..93c299e
--- /dev/null
+++ b/ImageTypeconverter/imagetypeconverter.py
@@ -0,0 +1,6 @@
+from PIL import Image
+import os
+#current format the image is in
+img=Image.open('imagename.jpg')
+#desirable format
+img.save('imagename.png')
\ No newline at end of file

From 49d25c7acb02dab799aff083d196f91d9afbdc8e Mon Sep 17 00:00:00 2001
From: jothivarshini <jothivarshini.s2020@vitstudent.ac.in>
Date: Wed, 5 Jan 2022 09:50:38 +0530
Subject: [PATCH 2/2] updated readme

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index eccf46f..bb038b3 100644
--- a/README.md
+++ b/README.md
@@ -55,4 +55,4 @@ This is a collection of short Python scripts to solve and automate tasks and sim
 35 | [**SMS-SENDER**](https://github.com/CopyrightC/Python-scripts-collection/blob/master/SMS_SENDER/main.py) | A python script that uses Tkinter and Twilio to send SMS. | twilio|
 36 | [**Password Validator**](https://github.com/Mannuel25/Python-scripts-collection/tree/master/Password%20Validator) | A script validates passwords to match specific rules. A valid password is one that conforms to some specific rules. | None |
 37 | [**RSA Communication**](https://github.com/fnplus/Python-scripts-collection/tree/master/RSA_Communication) | Independent Python script that allows RSA communication. | None |
-
+38 | [**Image Type Converter**](https://github.com/jothivarshini/Python-scripts-collection/tree/master/ImageTypeconverter)| Converts a given image format to the desired image format. | Pillow |