Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import base64
|
|
3 |
import requests
|
4 |
from PIL import Image
|
5 |
from io import BytesIO
|
6 |
-
|
7 |
|
8 |
# Configuration - Replace with your API key
|
9 |
GEMINI_API_KEY = st.secrets["GEMINI_API_KEY"]
|
@@ -34,13 +34,13 @@ def encode_file(uploaded_file):
|
|
34 |
file_bytes = uploaded_file.getvalue()
|
35 |
|
36 |
if uploaded_file.type == "application/pdf":
|
37 |
-
#
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
img_byte_arr = BytesIO()
|
43 |
-
|
44 |
return base64.b64encode(img_byte_arr.getvalue()).decode('utf-8')
|
45 |
|
46 |
return base64.b64encode(file_bytes).decode('utf-8')
|
@@ -89,10 +89,11 @@ def process_document():
|
|
89 |
|
90 |
# Generate preview
|
91 |
if uploaded_file.type == "application/pdf":
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
96 |
else:
|
97 |
st.session_state.doc_preview = Image.open(uploaded_file)
|
98 |
|
|
|
3 |
import requests
|
4 |
from PIL import Image
|
5 |
from io import BytesIO
|
6 |
+
import fitz # PyMuPDF
|
7 |
|
8 |
# Configuration - Replace with your API key
|
9 |
GEMINI_API_KEY = st.secrets["GEMINI_API_KEY"]
|
|
|
34 |
file_bytes = uploaded_file.getvalue()
|
35 |
|
36 |
if uploaded_file.type == "application/pdf":
|
37 |
+
# Convert PDF to image using PyMuPDF
|
38 |
+
pdf = fitz.open(stream=BytesIO(file_bytes))
|
39 |
+
page = pdf[0] # Get the first page
|
40 |
+
pix = page.get_pixmap()
|
41 |
+
img = Image.frombytes("RGB", [pix.width, pix.height], pix.samples)
|
42 |
img_byte_arr = BytesIO()
|
43 |
+
img.save(img_byte_arr, format='JPEG')
|
44 |
return base64.b64encode(img_byte_arr.getvalue()).decode('utf-8')
|
45 |
|
46 |
return base64.b64encode(file_bytes).decode('utf-8')
|
|
|
89 |
|
90 |
# Generate preview
|
91 |
if uploaded_file.type == "application/pdf":
|
92 |
+
pdf = fitz.open(stream=BytesIO(uploaded_file.getvalue()))
|
93 |
+
page = pdf[0] # Get the first page
|
94 |
+
pix = page.get_pixmap()
|
95 |
+
img = Image.frombytes("RGB", [pix.width, pix.height], pix.samples)
|
96 |
+
st.session_state.doc_preview = img
|
97 |
else:
|
98 |
st.session_state.doc_preview = Image.open(uploaded_file)
|
99 |
|