codelion commited on
Commit
392146d
·
verified ·
1 Parent(s): b874027

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -14
app.py CHANGED
@@ -26,11 +26,6 @@ def resize_image(img, target_size):
26
  img_copy = img.copy()
27
  return img_copy.resize(target_size, PIL.Image.Resampling.LANCZOS)
28
 
29
- def get_base_filename(original_path):
30
- """Extract original filename without extension"""
31
- base_name = os.path.basename(original_path)
32
- return os.path.splitext(base_name)[0]
33
-
34
  def generate_html_snippet(image_path_prefix):
35
  """Generate HTML code snippet with srcset"""
36
  srcset_items = [f"{image_path_prefix}-{w}x{h}.jpg {w}w" for w, h in SIZES]
@@ -59,9 +54,9 @@ def generate_html_snippet(image_path_prefix):
59
 
60
  return html
61
 
62
- def process_image(input_image, original_filename):
63
  """Main processing function"""
64
- if input_image is None:
65
  return None, None, "Please upload an image"
66
 
67
  # Create temporary directory for processed images
@@ -70,16 +65,28 @@ def process_image(input_image, original_filename):
70
  processed_paths = [] # Initialize the list outside try block
71
 
72
  try:
73
- # Convert numpy array to PIL Image
74
- img = Image.fromarray(input_image)
 
 
 
75
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  # Convert to RGB if necessary
77
  if img.mode != 'RGB':
78
  img = img.convert('RGB')
79
 
80
- # Get base filename without extension
81
- base_filename = os.path.splitext(original_filename)[0]
82
-
83
  # Process each size
84
  for width, height in SIZES:
85
  resized = resize_image(img, (width, height))
@@ -133,7 +140,7 @@ with gr.Blocks(title="Responsive Image Generator") as app:
133
  with gr.Column():
134
  input_image = gr.Image(
135
  label="Upload Original Image",
136
- type="numpy" # Using numpy type for better compatibility
137
  )
138
  process_btn = gr.Button("Process Image")
139
 
@@ -147,7 +154,7 @@ with gr.Blocks(title="Responsive Image Generator") as app:
147
 
148
  process_btn.click(
149
  fn=process_image,
150
- inputs=[input_image, input_image], # Pass the image twice to get both data and filename
151
  outputs=[output_zip, output_html, output_message]
152
  )
153
 
 
26
  img_copy = img.copy()
27
  return img_copy.resize(target_size, PIL.Image.Resampling.LANCZOS)
28
 
 
 
 
 
 
29
  def generate_html_snippet(image_path_prefix):
30
  """Generate HTML code snippet with srcset"""
31
  srcset_items = [f"{image_path_prefix}-{w}x{h}.jpg {w}w" for w, h in SIZES]
 
54
 
55
  return html
56
 
57
+ def process_image(input_img):
58
  """Main processing function"""
59
+ if input_img is None:
60
  return None, None, "Please upload an image"
61
 
62
  # Create temporary directory for processed images
 
65
  processed_paths = [] # Initialize the list outside try block
66
 
67
  try:
68
+ # Get original filename
69
+ base_filename = "image" # Default filename
70
+ if isinstance(input_img, dict) and "name" in input_img:
71
+ original_name = input_img["name"]
72
+ base_filename = os.path.splitext(original_name)[0]
73
 
74
+ # Get image data
75
+ if isinstance(input_img, dict) and "image" in input_img:
76
+ img_data = input_img["image"]
77
+ else:
78
+ img_data = input_img
79
+
80
+ # Convert to PIL Image if needed
81
+ if isinstance(img_data, np.ndarray):
82
+ img = Image.fromarray(img_data)
83
+ else:
84
+ img = img_data
85
+
86
  # Convert to RGB if necessary
87
  if img.mode != 'RGB':
88
  img = img.convert('RGB')
89
 
 
 
 
90
  # Process each size
91
  for width, height in SIZES:
92
  resized = resize_image(img, (width, height))
 
140
  with gr.Column():
141
  input_image = gr.Image(
142
  label="Upload Original Image",
143
+ type="pil" # Changed to PIL type
144
  )
145
  process_btn = gr.Button("Process Image")
146
 
 
154
 
155
  process_btn.click(
156
  fn=process_image,
157
+ inputs=[input_image], # Now only passing single input
158
  outputs=[output_zip, output_html, output_message]
159
  )
160