• <legend id='9YJUx'><style id='9YJUx'><dir id='9YJUx'><q id='9YJUx'></q></dir></style></legend>

  • <small id='9YJUx'></small><noframes id='9YJUx'>

      • <bdo id='9YJUx'></bdo><ul id='9YJUx'></ul>
    1. <i id='9YJUx'><tr id='9YJUx'><dt id='9YJUx'><q id='9YJUx'><span id='9YJUx'><b id='9YJUx'><form id='9YJUx'><ins id='9YJUx'></ins><ul id='9YJUx'></ul><sub id='9YJUx'></sub></form><legend id='9YJUx'></legend><bdo id='9YJUx'><pre id='9YJUx'><center id='9YJUx'></center></pre></bdo></b><th id='9YJUx'></th></span></q></dt></tr></i><div id='9YJUx'><tfoot id='9YJUx'></tfoot><dl id='9YJUx'><fieldset id='9YJUx'></fieldset></dl></div>

        <tfoot id='9YJUx'></tfoot>

        在 Python 3 中更改 Windows 10 背景

        Change Windows 10 background in Python 3(在 Python 3 中更改 Windows 10 背景)

        <small id='Q1GDd'></small><noframes id='Q1GDd'>

        <legend id='Q1GDd'><style id='Q1GDd'><dir id='Q1GDd'><q id='Q1GDd'></q></dir></style></legend>

            <bdo id='Q1GDd'></bdo><ul id='Q1GDd'></ul>

              <tbody id='Q1GDd'></tbody>

            1. <i id='Q1GDd'><tr id='Q1GDd'><dt id='Q1GDd'><q id='Q1GDd'><span id='Q1GDd'><b id='Q1GDd'><form id='Q1GDd'><ins id='Q1GDd'></ins><ul id='Q1GDd'></ul><sub id='Q1GDd'></sub></form><legend id='Q1GDd'></legend><bdo id='Q1GDd'><pre id='Q1GDd'><center id='Q1GDd'></center></pre></bdo></b><th id='Q1GDd'></th></span></q></dt></tr></i><div id='Q1GDd'><tfoot id='Q1GDd'></tfoot><dl id='Q1GDd'><fieldset id='Q1GDd'></fieldset></dl></div>

                  <tfoot id='Q1GDd'></tfoot>
                • 本文介绍了在 Python 3 中更改 Windows 10 背景的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我一直在尝试寻找通过 python 脚本更改 Windows 10 桌面壁纸的最佳方法.当我尝试运行此脚本时,桌面背景变为纯黑色.

                  I've been trying to find the best way to change the Windows 10 Desktop wallpaper through a python script. When I try to run this script, the desktop background turns to a solid black color.

                  import ctypes
                  
                  path = 'C:\Users\Patrick\Desktop\0200200220.jpg'
                  
                  def changeBG(path):
                      SPI_SETDESKWALLPAPER = 20
                      ctypes.windll.user32.SystemParametersInfoA(20, 0, path, 3)
                      return;
                  
                  changeBG(path)
                  

                  我能做些什么来解决这个问题?我正在使用python3

                  What can I do to fix this? I'm using python3

                  推荐答案

                  对于 64 位 windows,使用:

                  For 64 bit windows, use:

                  ctypes.windll.user32.SystemParametersInfoW
                  

                  对于 32 位窗口,使用:

                  for 32 bit windows, use:

                  ctypes.windll.user32.SystemParametersInfoA
                  

                  如果你用错了,你会得到一个黑屏.您可以在控制面板 -> 系统和安全 -> 系统中找到您使用的版本.

                  If you use the wrong one, you will get a black screen. You can find out which version your using in Control Panel -> System and Security -> System.

                  你也可以让你的脚本选择正确的:

                  You could also make your script choose the correct one:

                  import struct
                  import ctypes
                  
                  PATH = 'C:\Users\Patrick\Desktop\0200200220.jpg'
                  SPI_SETDESKWALLPAPER = 20
                  
                  def is_64bit_windows():
                      """Check if 64 bit Windows OS"""
                      return struct.calcsize('P') * 8 == 64
                  
                  def changeBG(path):
                      """Change background depending on bit size"""
                      if is_64bit_windows():
                          ctypes.windll.user32.SystemParametersInfoW(SPI_SETDESKWALLPAPER, 0, PATH, 3)
                      else:
                          ctypes.windll.user32.SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, PATH, 3)
                  
                  changeBG(PATH)
                  

                  更新:

                  我对上述内容进行了疏忽.正如评论中所展示的 @Mark Tolonen取决于 ANSI 和 UNICODE 路径字符串,而不是操作系统类型.

                  I've made an oversight with the above. As @Mark Tolonen demonstrated in the comments, it depends on ANSI and UNICODE path strings, not the OS type.

                  如果您使用字节字符串路径,例如 b'C:\Users\Patrick\Desktop\0200200220.jpg',请使用:

                  If you use the byte strings paths, such as b'C:\Users\Patrick\Desktop\0200200220.jpg', use:

                  ctypes.windll.user32.SystemParametersInfoA
                  

                  否则,您可以将其用于普通的 unicode 路径:

                  Otherwise you can use this for normal unicode paths:

                  ctypes.windll.user32.SystemParametersInfoW
                  

                  @Mark Tolonen 中的 argtypes 也可以更好地突出显示这一点 答案,以及其他 answer.

                  这篇关于在 Python 3 中更改 Windows 10 背景的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Kivy 1.9.0 Windows package KeyError: #39;rthooks#39;(Kivy 1.9.0 Windows 包 KeyError: rthooks)
                  Python Kivy: how to call a function on button click?(Python Kivy:如何在按钮单击时调用函数?)
                  How to disable a widget in Kivy?(如何禁用 Kivy 中的小部件?)
                  Centering an object in Kivy(在 Kivy 中将对象居中)
                  How to downgrade to Python 3.4 from 3.5(如何从 Python 3.5 降级到 Python 3.4)
                  Change button or label text color in kivy(在kivy中更改按钮或标签文本颜色)
                  <tfoot id='XfEWB'></tfoot>

                  <small id='XfEWB'></small><noframes id='XfEWB'>

                • <legend id='XfEWB'><style id='XfEWB'><dir id='XfEWB'><q id='XfEWB'></q></dir></style></legend>
                      <tbody id='XfEWB'></tbody>

                      <bdo id='XfEWB'></bdo><ul id='XfEWB'></ul>

                            <i id='XfEWB'><tr id='XfEWB'><dt id='XfEWB'><q id='XfEWB'><span id='XfEWB'><b id='XfEWB'><form id='XfEWB'><ins id='XfEWB'></ins><ul id='XfEWB'></ul><sub id='XfEWB'></sub></form><legend id='XfEWB'></legend><bdo id='XfEWB'><pre id='XfEWB'><center id='XfEWB'></center></pre></bdo></b><th id='XfEWB'></th></span></q></dt></tr></i><div id='XfEWB'><tfoot id='XfEWB'></tfoot><dl id='XfEWB'><fieldset id='XfEWB'></fieldset></dl></div>