aagoluoglu commited on
Commit
e8f5595
·
verified ·
1 Parent(s): a16aa0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -67,11 +67,12 @@ app_ui = ui.page_fillable(
67
 
68
  ### HELPER FUNCTIONS ###
69
  def tif_bytes_to_pil_image(tif_bytes):
70
- # Create a BytesIO object from the TIFF bytes
71
- bytes_io = io.BytesIO(tif_bytes)
72
-
73
- # Open the BytesIO object as an Image
74
- image = Image.open(bytes_io).convert("RGB")
 
75
 
76
  return image
77
 
 
67
 
68
  ### HELPER FUNCTIONS ###
69
  def tif_bytes_to_pil_image(tif_bytes):
70
+ # Create a BytesIO object from the TIFF bytes
71
+ bytes_io = io.BytesIO(tif_bytes)
72
+
73
+ # Open the BytesIO object as an Image, resize to 256
74
+ image = Image.open(bytes_io).convert("RGB")
75
+ image = image.resize((256, 256))
76
 
77
  return image
78