本文介绍了Tkinter:创建模糊透明度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何在tkinter中创建模糊透明效果.我已经知道如何通过使用

I am wondering how to create a blur transparency effect in tkinter. I already know how to add the transparency effect to the window by using

root=Tk()
root.attributes("-alpha",0.95)

但是如何添加模糊部分?

But how can you add the blur part?

推荐答案

tkinter不提供此服务.但是,您可以获取应用的屏幕截图并自己​​对其进行模糊处理(例如,参见 ImageFilter.GaussianBlur numpy.gaussian过滤器).

This service is not provided by tkinter. However you can take a screenshot of your app and blur it yourself (see for instance ImageFilter.GaussianBlur or numpy.gaussian filter).

这篇关于Tkinter:创建模糊透明度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 17:48