RawImageViewer / NoteFile
```import tkinter as tkclass CoordinateTool: def __init__(self, root): self.root = root # 라벨 초기화 self.label = tk.Label(root, text="마우스로 클릭하세요!") self.label.pack(pady=10) # 마우스 클릭 이벤트 바인딩 self.root.bind("", self.on_click) # 창 크기 조절 이벤트 바인딩 self.root.bind("", self.on_resize) def on_click(self, event): # 마우스 클릭 시 호출되는 함수 cl..