This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tkinter import Tk, Button, Scale, Canvas, Label, StringVar, Entry, \ | |
Toplevel, messagebox | |
from tkinter.colorchooser import askcolor | |
from PIL import Image | |
import os | |
class FilenamePopup: | |
def __init__(self, master): | |
top = self.top = Toplevel(master) |