Vihang28 commited on
Commit
aa708c8
·
verified ·
1 Parent(s): ed99c12

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -7
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.Column():
57
- file_input = gr.File(type="filepath", label="Upload .pdf file")
58
- upload_button = gr.Button(value="Show Images")
59
- img_gallery = gr.Gallery(label="Generated images", show_label=True, elem_id="gallery", object_fit="contain", height="auto",allow_preview=True)
60
-
61
- with gr.Row():
62
- output_text = text = gr.Textbox(label="Output", lines=4)
 
 
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()