ahmedghani commited on
Commit
b330d94
Β·
1 Parent(s): ca390ae

added image conversion

Browse files
Files changed (3) hide show
  1. app.py +21 -1
  2. image_convertor.py +64 -0
  3. requirements.txt +2 -1
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
  from video_watermark_remover import *
3
  from video_convertor import *
4
-
5
 
6
  css = """
7
  #remove_btn {
@@ -77,6 +77,26 @@ with demo:
77
  format_select.change(lambda x: gr.Radio.update(choices=video_format if x == "Video" else audio_format, interactive=True), inputs=[format_select], outputs=[format])
78
  format.change(lambda x: gr.Button.update(interactive=True), None, outputs=[convert_btn])
79
  convert_btn.click(convert_video, inputs=[input_video, format], outputs=[output, status])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  gr.Markdown("""## <center style="margin:20px;">Developed by Muhammad Ahmed<img src="https://avatars.githubusercontent.com/u/63394104?v=4" style="height:50px;width:50px;border-radius:50%;margin:5px;"></img></center>
81
  """)
82
  demo.launch(show_api=False)
 
1
  import gradio as gr
2
  from video_watermark_remover import *
3
  from video_convertor import *
4
+ from image_convertor import *
5
 
6
  css = """
7
  #remove_btn {
 
77
  format_select.change(lambda x: gr.Radio.update(choices=video_format if x == "Video" else audio_format, interactive=True), inputs=[format_select], outputs=[format])
78
  format.change(lambda x: gr.Button.update(interactive=True), None, outputs=[convert_btn])
79
  convert_btn.click(convert_video, inputs=[input_video, format], outputs=[output, status])
80
+
81
+ with gr.Tab("Image Convertor"):
82
+ gr.Markdown("""
83
+ # <center>πŸ–ΌοΈ Image Convertor</center>
84
+ """)
85
+ image_format = ['jpg', 'jpeg', 'png', 'bmp', 'tiff', 'gif', 'webp', 'ico', 'heic', 'heiv', 'heif']
86
+ with gr.Row():
87
+ with gr.Column():
88
+ input_image = gr.Video(label="Upload a Video")
89
+ with gr.Column():
90
+ with gr.Row():
91
+ with gr.Row():
92
+ image_format = gr.Radio(image_format, label="Select Format", interactive=False)
93
+ with gr.Row():
94
+ image_convert_btn = gr.Button("Convert Image", interactive=False, elem_id="convert_btn")
95
+ with gr.Row():
96
+ output_image = gr.File(label="Output File", interactive=False)
97
+ image_status = gr.Textbox(label="Status", interactive=False)
98
+ image_format.change(lambda x: gr.Button.update(interactive=True), None, outputs=[image_convert_btn])
99
+ image_convert_btn.click(convert_image, inputs=[input_image, image_format], outputs=[output_image, image_status])
100
  gr.Markdown("""## <center style="margin:20px;">Developed by Muhammad Ahmed<img src="https://avatars.githubusercontent.com/u/63394104?v=4" style="height:50px;width:50px;border-radius:50%;margin:5px;"></img></center>
101
  """)
102
  demo.launch(show_api=False)
image_convertor.py ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from PIL import Image
3
+ import pyheif
4
+ import io
5
+
6
+ class ImageConverter:
7
+ def __init__(self):
8
+ self.supported_formats = {
9
+ 'jpg': 'JPEG',
10
+ 'jpeg': 'JPEG',
11
+ 'png': 'PNG',
12
+ 'bmp': 'BMP',
13
+ 'tiff': 'TIFF',
14
+ 'gif': 'GIF',
15
+ 'webp': 'WEBP',
16
+ 'ico': 'ICO',
17
+ 'heic': 'HEIC',
18
+ 'heiv': 'HEIC',
19
+ 'heif': 'HEIC',
20
+ }
21
+
22
+ def open_heif_image(self, input_image):
23
+ heif_file = pyheif.read(input_image)
24
+ return Image.frombytes(
25
+ heif_file.mode,
26
+ heif_file.size,
27
+ heif_file.data,
28
+ "raw",
29
+ heif_file.mode,
30
+ heif_file.stride,
31
+ )
32
+
33
+ def convert_image(self, input_image, output_format, output_path=None):
34
+ try:
35
+ if not os.path.exists(input_image):
36
+ raise FileNotFoundError(f"The input image '{input_image}' does not exist.")
37
+
38
+ input_extension = input_image.split('.')[-1].lower()
39
+
40
+ if input_extension not in self.supported_formats:
41
+ raise ValueError(f"The input format '{input_extension}' is not supported.")
42
+
43
+ if output_format.lower() not in self.supported_formats:
44
+ raise ValueError(f"The output format '{output_format}' is not supported.")
45
+
46
+ if input_extension in ['heic', 'heiv', 'heif']:
47
+ image = self.open_heif_image(input_image)
48
+ else:
49
+ image = Image.open(input_image)
50
+
51
+ if output_path is None:
52
+ output_image = '.'.join(input_image.split('.')[:-1]) + f'.{output_format}'
53
+ else:
54
+ output_image = output_path
55
+
56
+ image.save(output_image, self.supported_formats[output_format.lower()])
57
+ print(f"Image converted and saved as {output_image}")
58
+ return output_image, "Image converted and saved as {output_image}"
59
+ except Exception as e:
60
+ None, print(f"Error: {e}")
61
+
62
+ def convert_image(input_image, output_format):
63
+ converter = ImageConverter()
64
+ return converter.convert_image(input_image, output_format)
requirements.txt CHANGED
@@ -2,4 +2,5 @@ gradio==3.22.1
2
  ffmpeg-python
3
  moviepy
4
  pydub
5
- opencv-python
 
 
2
  ffmpeg-python
3
  moviepy
4
  pydub
5
+ opencv-python
6
+ pyheif