溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用python 將圖片復(fù)制到系統(tǒng)剪貼中

發(fā)布時間:2020-08-31 12:54:41 來源:腳本之家 閱讀:197 作者:betty_xfy 欄目:開發(fā)技術(shù)

需要安裝pywin32,pillow 依賴包

#coding:utf-8

import win32clipboard as clip
import win32con
from PIL import Image
from cStringIO import StringIO

'''
  往剪貼板中放入圖片
'''
def setImage(data):
  clip.OpenClipboard() #打開剪貼板
  clip.EmptyClipboard() #先清空剪貼板
  clip.SetClipboardData(win32con.CF_DIB, data) #將圖片放入剪貼板
  clip.CloseClipboard()



if __name__ == '__main__':
  imagepath = 'E:\\aa.jpg'
  img = Image.open(imagepath)
  output = StringIO()
  img.convert("RGB").save(output, "BMP")
  data = output.getvalue()[14:]
  output.close()
  setImage(data)

以上這篇使用python 將圖片復(fù)制到系統(tǒng)剪貼中就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI