[파이썬 응용] PDF 합치는 프로그램(2)
·
Python/Application
import sys import os from PyPDF2.pdf import * from PyQt5.QtWidgets import * from PyQt5.QtCore import * from PyQt5.QtGui import * class MainWidget(QWidget): def __init__(self): super().__init__() manual_label = [QLabel("PDF Application"), QLabel("Created by JS")] for i in range(0, 2): manual_label[i].setStyleSheet("Color : gray") manual_label[i].setFont(QFont("", 40 - (12 * i))) hbox = [QHBoxLayo..