png图片背景转换成透明
生活随笔
收集整理的這篇文章主要介紹了
png图片背景转换成透明
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
import numpy as np
import cv2from PIL import Image# 修改純白背景圖為透明背景圖
def white2transparent(img):height, width, channel = img.shapefor h in range(height):for w in range(width):color = img[h, w]if (color == np.array([255, 255, 255, 255])).all():img[h, w] = [0, 0, 0, 0]return imgif __name__ == '__main__':# 二:白背景圖轉(zhuǎn)透明背景圖# white_img = cv2.imread('D:/.Download/logo.png')# # print(white_img.shape) # (796, 796, 3)# white_img = cv2.cvtColor(white_img, cv2.COLOR_BGR2BGRA) # 轉(zhuǎn)為4通道# # print(white_img.shape) # (796, 796, 4)# new_transparent = white2transparent(white_img)# cv2.imwrite('new_transparent.png', new_transparent)img=cv2.imread('new_transparent.png',-1)height, width = img.shape[:2]cv2.imshow('img', img)cv2.imwrite('1.jpg', img)# 縮小圖像size = (int(width * 0.0125), int(height * 0.0125))shrink = cv2.resize(img, size, interpolation=cv2.INTER_AREA)height1, width1 = shrink.shape[:2]print(height1, width1)cv2.imshow('img',shrink)cv2.imwrite('1.jpg', shrink)cv2.waitKey(0)
總結(jié)
以上是生活随笔為你收集整理的png图片背景转换成透明的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 鸿蒙 悟空遥控,利用悟空遥控推送软件,成
- 下一篇: php中怎么设置透明背景图片,css怎样