Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -41,11 +41,11 @@ async def ocr(
|
|
41 |
# languages: list = Body(["eng"])
|
42 |
):
|
43 |
try:
|
44 |
-
print("[Hello]", image.filename.split(".")[-1].lower())
|
45 |
-
# Check if the file format is allowed
|
46 |
-
file_extension = image.filename.split(".")[-1].lower()
|
47 |
-
if file_extension not in VALID_IMAGE_EXTENSIONS:
|
48 |
-
|
49 |
|
50 |
content = await image.read()
|
51 |
image = Image.open(BytesIO(content))
|
|
|
41 |
# languages: list = Body(["eng"])
|
42 |
):
|
43 |
try:
|
44 |
+
# print("[Hello]", image.filename.split(".")[-1].lower())
|
45 |
+
# # Check if the file format is allowed
|
46 |
+
# file_extension = image.filename.split(".")[-1].lower()
|
47 |
+
# if file_extension not in VALID_IMAGE_EXTENSIONS:
|
48 |
+
# raise HTTPException(status_code=400, detail="Invalid file format. Only .jpg, .jpeg, and .png are allowed.")
|
49 |
|
50 |
content = await image.read()
|
51 |
image = Image.open(BytesIO(content))
|