Skip to main content

Issues faced when trying to render two PDF files

I am trying to code a program that will take in two files: a question paper and an answer paper. The two files should be rendered in the same window and have a vertical scroll bar that can be used.

Below is my code:

import tkinter as tk
from tkinter import filedialog
from tkinter import ttk
from tkinter import *
from PIL import Image, ImageTk
import os
from pdf2image import convert_from_path

class PDFViewerApp:
    def __init__(self, root):
        self.root = root
        self.root.title("PDF Question Cropper")

        self.frame = ttk.Frame(self.root)
        self.frame.pack(fill="both", expand=True)

        self.question_file = None
        self.answer_file = None

        self.question_label = ttk.Label(self.frame, text="No question file selected.")
        self.question_label.pack()

        self.select_question_button = ttk.Button(self.frame, text="Select Question PDF", command=self.select_question_pdf)
        self.select_question_button.pack()

        self.answer_label = ttk.Label(self.frame, text="No answer file selected.")
        self.answer_label.pack()

        self.select_answer_button = ttk.Button(self.frame, text="Select Answer PDF", command=self.select_answer_pdf)
        self.select_answer_button.pack()

        self.confirm_button = ttk.Button(self.frame, text="Confirm and Process", command=self.process_pdfs)
        self.confirm_button.pack()

        self.new_window = None
        self.pdf_canvas1 = None
        self.pdf_canvas2 = None

    def select_question_pdf(self):
        self.question_file = filedialog.askopenfilename(title="Select Question PDF")
        if self.question_file:
            self.question_label.config(text=f"Question PDF: {os.path.basename(self.question_file)}")

    def select_answer_pdf(self):
        self.answer_file = filedialog.askopenfilename(title="Select Answer PDF")
        if self.answer_file:
            self.answer_label.config(text=f"Answer PDF: {os.path.basename(self.answer_file)}")

    def process_pdfs(self):
        if not self.question_file or not self.answer_file:
            return
        self.open_new_window()

    def open_new_window(self):
        self.new_window = tk.Toplevel(self.root)
        self.new_window.title("Question Cropper")

        self.pdf_viewer_frame = ttk.Frame(self.new_window)
        self.pdf_viewer_frame.pack(fill=tk.BOTH, expand=True)

        self.pdf_canvas1 = tk.Canvas(self.pdf_viewer_frame, xscrollincrement=1)
        self.pdf_canvas2 = tk.Canvas(self.pdf_viewer_frame, xscrollincrement=1)

        self.scrollbar1 = ttk.Scrollbar(self.pdf_viewer_frame, orient="vertical", command=self.pdf_canvas1.yview)
        self.scrollbar2 = ttk.Scrollbar(self.pdf_viewer_frame, orient="vertical", command=self.pdf_canvas2.yview)

        self.scrollbar1.pack(side="right", fill="y")
        self.scrollbar2.pack(side="right", fill="y")

        self.pdf_canvas1.config(yscrollcommand=self.scrollbar1.set)
        self.pdf_canvas2.config(yscrollcommand=self.scrollbar2.set)

        self.pdf_canvas1.pack(side="left", fill="both", expand=True)
        self.pdf_canvas2.pack(side="right", fill="both", expand=True)

        self.file_label = ttk.Label(self.new_window, text="Processing...")
        self.file_label.pack()

        self.display_pdfs()

    def display_pdfs(self):
        if self.question_file and self.answer_file:
            question_pages = convert_from_path(self.question_file)
            answer_pages = convert_from_path(self.answer_file)

            if question_pages and answer_pages:
                max_width = max(page.width for page in question_pages + answer_pages)
                max_height = max(page.height for page in question_pages + answer_pages)

                for page in range(min(len(question_pages), len(answer_pages))):
                    img1 = question_pages[page]
                    img2 = answer_pages[page]

                    img1_blank = Image.new('RGB', (max_width, max_height), (255, 255, 255))
                    img2_blank = Image.new('RGB', (max_width, max_height), (255, 255, 255))

                    img1_blank.paste(img1, (0, 0))
                    img2_blank.paste(img2, (0, 0))

                    photo1 = ImageTk.PhotoImage(master=self.new_window, image=img1_blank)
                    photo2 = ImageTk.PhotoImage(master=self.new_window, image=img2_blank)

                    canvas_width = max_width
                    canvas_height = max_height

                    self.pdf_canvas1.config(scrollregion=(0, 0, canvas_width, canvas_height), width=canvas_width, height=canvas_height)
                    self.pdf_canvas2.config(scrollregion=(0, 0, canvas_width, canvas_height), width=canvas_width, height=canvas_height)

                    self.pdf_canvas1.create_image(0, 0, image=photo1, anchor=tk.NW)
                    self.pdf_canvas2.create_image(0, 0, image=photo2, anchor=tk.NW)

                    self.pdf_canvas1.photo = photo1
                    self.pdf_canvas2.photo = photo2

                    self.file_label.config(text=f"Question File: {os.path.basename(self.question_file)}\nAnswer File: {os.path.basename(self.answer_file)} - Page {page + 1}")

if __name__ == "__main__":
    root = tk.Tk()
    app = PDFViewerApp(root)
    root.mainloop()

It will be great if anyone can help.

Currently, I am facing three main issues:

  1. The two files are not taking up the same amount of space in the window; the question paper, which is placed on the left, appears larger.

  2. The two scroll bars are squeezed to the right and not positioned at the relative right side of each displayed file.

  3. The two files cannot be fully rendered. In my testing with the current files, only the third page seems to be displayed.



source https://stackoverflow.com/questions/77353994/issues-faced-when-trying-to-render-two-pdf-files

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...