Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,13 +53,15 @@ title = "Extract Image and Text"
|
|
53 |
with gr.Blocks(theme=gr.themes.Glass(primary_hue=gr.themes.colors.slate)) as demo:
|
54 |
gr.Markdown(f'<h1 style="text-align: center;">{title}</h1>')
|
55 |
with gr.Row():
|
56 |
-
with gr.
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
63 |
upload_button.click(pdf_to_img, inputs=file_input, outputs=[img_gallery])
|
64 |
upload_button.click(extract_text_from_pdf, inputs=file_input, outputs=[output_text])
|
65 |
demo.launch()
|
|
|
53 |
with gr.Blocks(theme=gr.themes.Glass(primary_hue=gr.themes.colors.slate)) as demo:
|
54 |
gr.Markdown(f'<h1 style="text-align: center;">{title}</h1>')
|
55 |
with gr.Row():
|
56 |
+
with gr.Row():
|
57 |
+
with gr.Column():
|
58 |
+
file_input = gr.File(type="filepath", label="Upload .pdf file")
|
59 |
+
upload_button = gr.Button(value="Show Images")
|
60 |
+
img_gallery = gr.Gallery(label="Generated images", show_label=True, elem_id="gallery", object_fit="contain", height="auto",allow_preview=True)
|
61 |
+
|
62 |
+
with gr.Row():
|
63 |
+
with gr.Column():
|
64 |
+
output_text = text = gr.Textbox(label="Output", lines=4)
|
65 |
upload_button.click(pdf_to_img, inputs=file_input, outputs=[img_gallery])
|
66 |
upload_button.click(extract_text_from_pdf, inputs=file_input, outputs=[output_text])
|
67 |
demo.launch()
|