def choosepic(): path_ = tkinter.filedialog.askopenfilename() path.set(path_) print(path) img_open = Image.open(entry.get()) img_array = np.array(img_open) arr1 = img_array[:] #print(arr1.shape) for x in range(1, arr1.shape[0]): for y in range(1, arr1.shape[1]): a = img_array[x, y][0] b = img_array[x, y][1] c = img_array[x, y][2] arr1[x, y] = (a, b, c) img1 = Image.fromarray(arr1) # img1 = np.array(img1) img = ImageTk.PhotoImage(img1.resize((380, 330))) img2 = cv2.resize(arr1, (380, 330), interpolation=cv2.INTER_AREA) lableShowImage1.config(image=img) lableShowImage1.place(x=270, y=50) lableShowImage1.image = img label4 = Label(text='原始图案', bg='#F0E68C', font=('微软雅黑', 10)) label4.place(x=275, y=38) os.remove('img.jpg') cv2.imwrite('img.jpg',img2) path = StringVar() entry = Entry(root2, state='readonly', text=path, width=100) lableShowImage1 = Label(root2, bg='#F0E68C', relief=GROOVE, width=380, height=330) lableShowImage2 = Label(root2, bg='#F0E68C', relief=GROOVE, width=380, height=330) button3 = Button(root2, text='选择图片', relief=GROOVE, font=('微软雅黑', 14), command=lambda:choosepic()) # 选择图片按钮 button3.place(x=1080, y=120)为什么第二次选择图片时不会显示新选择的图片?
时间: 2023-12-01 15:04:27 浏览: 100
在代码中,我们可以看到在选择新图片后,虽然重新生成了新的img和img2,但是在显示图片的lableShowImage1上,我们没有重新生成新的lableShowImage1,而是直接使用了旧的lableShowImage1。因此第二次选择图片时不会显示新选择的图片。解决方法是在重新生成img和img2后,同时也重新生成新的lableShowImage1,并且将旧的lableShowImage1从窗口中删除。
相关问题
def choosepic(): global gl_path_ gl_path_ = tkinter.filedialog.askopenfilename() # 获取图片路径 path.set(gl_path_) # print(path_) img_open = Image.open(entry.get()) img = ImageTk.PhotoImage(img_open.resize((500,500)))#把图片缩放以下,不然太大了,放不下 l1.config(image=img) l1.image = img # keep a reference
这段代码实现了一个选择图片的功能。首先,通过`tkinter.filedialog.askopenfilename()`弹出一个文件选择对话框,让用户选择一张图片,并将选择的图片路径存储在`gl_path_`变量中。然后,将路径存储在`path`变量中,以便其他函数使用。接着,使用Pillow库的`Image.open()`函数打开这张图片,并返回一个`Image`对象。再使用`ImageTk.PhotoImage()`函数将`Image`对象转换为`PhotoImage`对象,以便在tkinter窗口中显示。由于tkinter只能显示`PhotoImage`对象,不能直接显示`Image`对象。最后,将`PhotoImage`对象显示到tkinter窗口中,并将其存储在`l1.image`变量中,以便保持对该对象的引用,防止被垃圾回收。
def choosepic(): path_ = tkinter.filedialog.askopenfilename() path.set(path_) print(path) img_open = Image.open(entry.get()) img_array = np.array(img_open) arr1 = img_array[:] #print(arr1.shape) for x in range(1, arr1.shape[0]): for y in range(1, arr1.shape[1]): a = img_array[x, y][0] b = img_array[x, y][1] c = img_array[x, y][2] arr1[x, y] = (a, b, c) img1 = Image.fromarray(arr1) # img1 = np.array(img1) img = ImageTk.PhotoImage(img1.resize((380, 330))) img2 = cv2.resize(arr1, (380, 330), interpolation=cv2.INTER_AREA) lableShowImage1.config(image=img) lableShowImage1.place(x=270, y=50) lableShowImage1.image = img label4 = Label(text='原始图案', bg='#F0E68C', font=('微软雅黑', 10)) label4.place(x=275, y=38) os.remove('img.jpg') cv2.imwrite('img.jpg',img2) path = StringVar() entry = Entry(root2, state='readonly', text=path, width=100) lableShowImage1 = Label(root2, bg='#F0E68C', relief=GROOVE, width=380, height=330) lableShowImage2 = Label(root2, bg='#F0E68C', relief=GROOVE, width=380, height=330) button3 = Button(root2, text='选择图片', relief=GROOVE, font=('微软雅黑', 14), command=lambda:choosepic()) # 选择图片按钮 button3.place(x=1080, y=120)第二次选择图片不显示是为什么呢
根据你提供的代码,我看不出来第二次选择图片不显示的具体原因。可能需要你提供更多的代码和详细的描述,才能更好地帮助你解决问题。不过,你可以检查一下以下几个方面:
1. 是否有错误提示或异常信息输出,可以帮助你定位问题。
2. 是否有命名冲突或覆盖之前的变量,导致第二次选择图片无法显示。
3. 是否对第二次选择的图片进行了正确的读取和处理,例如路径是否正确、图片格式是否支持等等。
阅读全文