forked from CSEdgeOfficial/Python-Programming-Internship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask1
36 lines (28 loc) · 1.22 KB
/
Task1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from PIL import Image
import os
def convert_image(input_path, output_path, output_format):
try:
# Open the image
with Image.open(input_path) as img:
# Convert and save the image to the desired format
img.save(output_path, format=output_format)
print(f"Image converted successfully to {output_format} format.")
except Exception as e:
print(f"An error occurred: {e}")
def main():
input_path = input("Enter the path to the input image: ")
output_format = input("Enter the desired output format (e.g., JPEG, PNG, BMP, GIF): ").upper()
# Validate output format
if output_format not in ['JPEG', 'PNG', 'BMP', 'GIF']:
print("Invalid output format. Please choose from JPEG, PNG, BMP, or GIF.")
return
# Extract the file name and extension
file_name, file_extension = os.path.splitext(input_path)
# If the input file already has an extension, remove it
file_name_without_ext = file_name.split('.')[0]
# Set the output path
output_path = f"{file_name_without_ext}_converted.{output_format.lower()}"
# Convert the image
convert_image(input_path, output_path, output_format)
if __name__ == "__main__":
main()