Spaces:
Runtime error
Runtime error
rongo1
commited on
Commit
·
2ca5c5e
1
Parent(s):
bd7ab2a
first commit
Browse files- app.py +59 -0
- requirements.txt +3 -0
- script.sh +5 -0
app.py
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import subprocess
|
3 |
+
import gradio as gr
|
4 |
+
from pptx import Presentation
|
5 |
+
from pptx.util import Inches
|
6 |
+
from pdf2image import convert_from_path
|
7 |
+
|
8 |
+
subprocess.run(['bash', 'setup.sh'], check=True)
|
9 |
+
|
10 |
+
def pptx_to_pdf(input_pptx, output_pdf):
|
11 |
+
subprocess.run(['unoconv', '-f', 'pdf', '-o', output_pdf, input_pptx], check=True)
|
12 |
+
|
13 |
+
def pdf_to_pptx(input_pdf, output_pptx):
|
14 |
+
output_dir = "pdf_images"
|
15 |
+
os.makedirs(output_dir, exist_ok=True)
|
16 |
+
|
17 |
+
images = convert_from_path(input_pdf, output_folder=output_dir)
|
18 |
+
|
19 |
+
presentation = Presentation()
|
20 |
+
|
21 |
+
for i, img in enumerate(images):
|
22 |
+
img_path = os.path.join(output_dir, f"page_{i+1}.png")
|
23 |
+
img.save(img_path, 'PNG')
|
24 |
+
|
25 |
+
slide_layout = presentation.slide_layouts[5]
|
26 |
+
slide = presentation.slides.add_slide(slide_layout)
|
27 |
+
left = top = Inches(0)
|
28 |
+
pic = slide.shapes.add_picture(img_path, left, top, width=Inches(10), height=Inches(7.5))
|
29 |
+
|
30 |
+
presentation.save(output_pptx)
|
31 |
+
|
32 |
+
def convert_pptx_to_pdf(pptx_file):
|
33 |
+
output_pdf = "output.pdf"
|
34 |
+
pptx_to_pdf(pptx_file.name, output_pdf)
|
35 |
+
return output_pdf
|
36 |
+
|
37 |
+
def convert_pdf_to_pptx(pdf_file):
|
38 |
+
output_pptx = "output_converted.pptx"
|
39 |
+
pdf_to_pptx(pdf_file.name, output_pptx)
|
40 |
+
return output_pptx
|
41 |
+
|
42 |
+
pptx_to_pdf_interface = gr.Interface(
|
43 |
+
fn=convert_pptx_to_pdf,
|
44 |
+
inputs=gr.inputs.File(file_count="single", type="file", label="Upload PPTX File"),
|
45 |
+
outputs=gr.outputs.File(label="Download PDF File"),
|
46 |
+
title="Convert PPTX to PDF"
|
47 |
+
)
|
48 |
+
|
49 |
+
pdf_to_pptx_interface = gr.Interface(
|
50 |
+
fn=convert_pdf_to_pptx,
|
51 |
+
inputs=gr.inputs.File(file_count="single", type="file", label="Upload PDF File"),
|
52 |
+
outputs=gr.outputs.File(label="Download PPTX File"),
|
53 |
+
title="Convert PDF to PPTX"
|
54 |
+
)
|
55 |
+
|
56 |
+
app = gr.TabbedInterface([pptx_to_pdf_interface, pdf_to_pptx_interface], ["PPTX to PDF", "PDF to PPTX"])
|
57 |
+
|
58 |
+
if __name__ == "__main__":
|
59 |
+
app.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
python-pptx
|
3 |
+
pdf2image
|
script.sh
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
sudo apt-get update
|
2 |
+
sudo apt-get install -y unoconv libreoffice
|
3 |
+
|
4 |
+
# Clean up
|
5 |
+
sudo apt-get clean
|