如何制作高清晰度的透明表格?

我正在尝试制作一个透明的应用程序,但是结果带有粗糙的边缘,如下面的图像中的示例所示。 有什么办法可以删除这个绿色轮廓?

with open('datatest.txt') as file_object:
    contents = file_object.read()
    print(contents)
display(type(contents))
contents = float(contents)

100
60
70
900
100
200
500
500

str
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-72-659198854b7d> in <module>
      3     print(contents)
      4 display(type(contents))
----> 5 contents = float(contents)

ValueError: could not convert string to float: '100\n60\n70\n900\n100\n200\n500\n500\n'

错误SS:

如何制作高清晰度的透明表格?

原始图片:

如何制作高清晰度的透明表格?

skyson99599 回答:如何制作高清晰度的透明表格?

几种方法:

  1. 使用与while边框颜色非常接近的背景颜色。这样细的轮廓就不那么可见了。

  2. 使用Layered Windows

本文链接:https://www.f2er.com/2769007.html

大家都在问