|
import os |
|
import streamlit as st |
|
from pdf_to_svg import convert_pdf_to_svg |
|
from svg_to_pdf import convert_svg_to_pdf |
|
import datetime |
|
|
|
|
|
INPUT_FOLDER = "./input/" |
|
OUTPUT_FOLDER = "./output/" |
|
LOG_FOLDER = "./logs/" |
|
SVG_OUTPUT = os.path.join(OUTPUT_FOLDER, "processed_diagram.svg") |
|
PDF_OUTPUT = os.path.join(OUTPUT_FOLDER, "processed_diagram.pdf") |
|
|
|
|
|
os.makedirs(INPUT_FOLDER, exist_ok=True) |
|
os.makedirs(OUTPUT_FOLDER, exist_ok=True) |
|
os.makedirs(LOG_FOLDER, exist_ok=True) |
|
|
|
|
|
def log_conversion(status, input_pdf, output_svg, output_pdf): |
|
log_path = os.path.join(LOG_FOLDER, "conversion_log.txt") |
|
with open(log_path, "a") as log_file: |
|
log_file.write(f"{datetime.datetime.now()} - Status: {status}\n") |
|
log_file.write(f"Input PDF: {input_pdf}\n") |
|
log_file.write(f"Output SVG: {output_svg}\n") |
|
log_file.write(f"Output PDF: {output_pdf}\n\n") |
|
|
|
|
|
def main(): |
|
st.title("PDF Dimension Enhancer") |
|
|
|
|
|
uploaded_file = st.file_uploader("Upload your PDF file", type="pdf") |
|
if uploaded_file: |
|
input_pdf = os.path.join(INPUT_FOLDER, "uploaded_file.pdf") |
|
with open(input_pdf, "wb") as f: |
|
f.write(uploaded_file.read()) |
|
st.success(f"File uploaded: {uploaded_file.name}") |
|
|
|
|
|
width = st.number_input("Width (in inches)", value=8.0, step=0.1) |
|
height = st.number_input("Height (in inches)", value=11.0, step=0.1) |
|
|
|
|
|
if st.button("Process PDF"): |
|
try: |
|
|
|
convert_pdf_to_svg(input_pdf, SVG_OUTPUT, width, height) |
|
|
|
|
|
convert_svg_to_pdf(SVG_OUTPUT, PDF_OUTPUT) |
|
|
|
|
|
log_conversion("Success", input_pdf, SVG_OUTPUT, PDF_OUTPUT) |
|
|
|
|
|
st.success("File processed successfully!") |
|
st.download_button("Download SVG", open(SVG_OUTPUT, "rb"), file_name="processed_diagram.svg") |
|
st.download_button("Download PDF", open(PDF_OUTPUT, "rb"), file_name="processed_diagram.pdf") |
|
st.info("Both SVG and PDF outputs are ready for download.") |
|
except Exception as e: |
|
log_conversion("Failed", input_pdf, SVG_OUTPUT, PDF_OUTPUT) |
|
st.error(f"Error processing file: {e}") |
|
|
|
if __name__ == "__main__": |
|
main() |
|
|