美文网首页
Python調用DLL - 微信截圖

Python調用DLL - 微信截圖

作者: Maliao | 来源:发表于2018-04-09 05:57 被阅读70次

    檔案:PrScrn.dll

    DLL可以由安裝微信或下方直接下載獲得

    微信路經
    C:\Program Files (x86)\Tencent\WeChat

    Python環境

    python 2.x
    

    代碼

    #!/usr/bin/python
    # -*- coding: utf-8 -*-
    import ctypes
    
    dll = ctypes.cdll.LoadLibrary('PrScrn.dll')
    dll.PrScrn(0)
    

    執行:

    相关文章

      网友评论

          本文标题:Python調用DLL - 微信截圖

          本文链接:https://www.haomeiwen.com/subject/gzbffftx.html